-
Notifications
You must be signed in to change notification settings - Fork 215
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
Sign bundles published from archives and during copy #3202
Merged
schristoff
merged 11 commits into
getporter:main
from
kichristensen:signBundlesPublishedFromArchives
Sep 30, 2024
Merged
Sign bundles published from archives and during copy #3202
schristoff
merged 11 commits into
getporter:main
from
kichristensen:signBundlesPublishedFromArchives
Sep 30, 2024
+258
−44
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
The code flow for publishing from archives is different from publishing from a porter bundle definition. This resulted in signing never happened when publishing from an archive. This change introduces the signing when publishing from archives too. Signed-off-by: Kim Christensen <kimworking@gmail.com>
When a bundles is published from an archive the invocation image is relocated and we cannot expect the invocation image to be called the same as defined directly by the bundle. Signed-off-by: Kim Christensen <kimworking@gmail.com>
Update the integration test to also verify signing of bundles published from archives Signed-off-by: Kim Christensen <kimworking@gmail.com>
Loading status checks…
…ndles Signed-off-by: Kim Christensen <kimworking@gmail.com>
Signed-off-by: Kim Christensen <kimworking@gmail.com>
e2ea497
to
c0feb36
Compare
Make it possible to sign bundles during copy between repositories. This is handle by creating a new signature, NOT by copying the potential existing signature. This is done for two reasons: 1. A signature might not be present on the source bundle 1. Repositories might use different digest algorithms or calculate the digest differently Signed-off-by: Kim Christensen <kimworking@gmail.com>
schristoff
reviewed
Aug 23, 2024
Instead bundle image should be used Signed-off-by: Kim Christensen <kimworking@gmail.com>
84205f4
to
9d5af30
Compare
Signed-off-by: Kim Christensen <kimworking@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this change
Support signing and verifying bundles published from archives.
Also adds support for signing bundles during copy
This is handle by creating a new signature, NOT by copying the potential existing signature. This is done for two reasons:
What issue does it fix
Closes #3201
Closes #3203
Notes for the reviewer
Put any questions or notes for the reviewer here.
Checklist