-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: Implement OCI Index manipulation #719
Closed
craciunoiuc
wants to merge
16
commits into
unikraft:staging
from
craciunoiuc:craciunoiuc/add-manifest-index-pushing
Closed
feat!: Implement OCI Index manipulation #719
craciunoiuc
wants to merge
16
commits into
unikraft:staging
from
craciunoiuc:craciunoiuc/add-manifest-index-pushing
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
craciunoiuc
added
kind/enhancement
New feature or request
cmd/kraft/pkg
Issue or PR related to the ukpkg CLI program
cmd/kraft/run
Issue or PR related to the ukrun CLI program
area/manifest
Issue or PR is related to the manifest
area/oci
Issue or PR is related to OCI package management
kind/breaking-change
Refers to changes that alter the usage of kraftkit
labels
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
nderjung
reviewed
Aug 9, 2023
craciunoiuc
force-pushed
the
craciunoiuc/add-manifest-index-pushing
branch
3 times, most recently
from
August 10, 2023 12:32
10f0b9d
to
0e803c2
Compare
nderjung
reviewed
Aug 10, 2023
nderjung
reviewed
Aug 10, 2023
nderjung
reviewed
Aug 10, 2023
nderjung
reviewed
Aug 10, 2023
nderjung
reviewed
Aug 10, 2023
craciunoiuc
force-pushed
the
craciunoiuc/add-manifest-index-pushing
branch
from
August 11, 2023 11:55
3e2f65d
to
24f1162
Compare
craciunoiuc
force-pushed
the
craciunoiuc/add-manifest-index-pushing
branch
2 times, most recently
from
September 5, 2023 10:17
ff3ea31
to
31e3c60
Compare
craciunoiuc
force-pushed
the
craciunoiuc/add-manifest-index-pushing
branch
2 times, most recently
from
September 5, 2023 10:29
fa20610
to
dc244de
Compare
craciunoiuc
force-pushed
the
craciunoiuc/add-manifest-index-pushing
branch
2 times, most recently
from
September 8, 2023 12:11
c8630df
to
084c1cd
Compare
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Currently pulling works. Packaging is not working and pushing can only push manifests. Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
nderjung
force-pushed
the
craciunoiuc/add-manifest-index-pushing
branch
from
September 8, 2023 16:08
9abef15
to
73570cc
Compare
4 tasks
This was superseded |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/manifest
Issue or PR is related to the manifest
area/oci
Issue or PR is related to OCI package management
cmd/kraft/pkg
Issue or PR related to the ukpkg CLI program
cmd/kraft/run
Issue or PR related to the ukrun CLI program
kind/breaking-change
Refers to changes that alter the usage of kraftkit
kind/enhancement
New feature or request
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Prerequisite checklist
make fmt
on your commit series before opening this PR;Description of changes
This PR offers the ability to work with index oci artifacts.
This translates in pushing a single artifact
helloworld:latest
for multiple platform/architecture permutations.The outstanding issue of this PR is that containerd support breaks as it still tries to work with images instead of indexes.
Moreover, existing images in the registry might be now unusable and need to be pushed again. Single artifact applications should still have an index.
GitHub-Closes: #704