We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fa1bed commit 3dedb89Copy full SHA for 3dedb89
pkg/argocd/argocd.go
@@ -490,11 +490,11 @@ func GetImagesFromApplication(app *v1alpha1.Application) image.ContainerImageLis
490
appImgs := make(map[string]*image.ContainerImage, len(app.Status.Summary.Images))
491
for _, imageStr := range app.Status.Summary.Images {
492
img := image.NewFromIdentifier(imageStr)
493
- appImgs[img.GetFullNameWithoutTag()] = img
+ appImgs[img.ImageName] = img
494
}
495
496
for _, img := range *imagesFromAnnotations {
497
- if appImg, ok := appImgs[img.GetFullNameWithoutTag()]; ok {
+ if appImg, ok := appImgs[img.ImageName]; ok {
498
i := *appImg
499
i.ImageAlias = img.ImageAlias
500
images = append(images, &i)
0 commit comments