-
Notifications
You must be signed in to change notification settings - Fork 171
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
update find-images output to contain the images' digest #2327
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for zarf-docs canceled.
|
src/pkg/packager/prepare.go
Outdated
imageWithSha, err := utils.GetImageWithSha(image) | ||
if err != nil { | ||
message.WarnErrf(err, "Problem getting image with sha for %s: %s", image, err.Error()) | ||
erroredCosignLookups = append(erroredCosignLookups, image) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cosign signatures are different than sha signatures. I recommend creating a new array for erroredShaLookups. You can place a message near erroredCosginLookups in the below block further down in the file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added a check with erroredShaLookups
Co-authored-by: Austin Abro <37223396+AustinAbro321@users.noreply.github.com>
Description
update find-images output to contain the images' digest
Related Issue
Fixes #2247
Type of change
Checklist before merging