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 077148b commit b412955Copy full SHA for b412955
pkg/argocd/argocd.go
@@ -487,11 +487,11 @@ func GetImagesFromApplication(app *v1alpha1.Application) image.ContainerImageLis
487
appImgs := make(map[string]*image.ContainerImage, len(app.Status.Summary.Images))
488
for _, imageStr := range app.Status.Summary.Images {
489
img := image.NewFromIdentifier(imageStr)
490
- appImgs[img.GetFullNameWithoutTag()] = img
+ appImgs[img.ImageName] = img
491
}
492
493
for _, img := range *imagesFromAnnotations {
494
- if appImg, ok := appImgs[img.GetFullNameWithoutTag()]; ok {
+ if appImg, ok := appImgs[img.ImageName]; ok {
495
i := *appImg
496
i.ImageAlias = img.ImageAlias
497
images = append(images, &i)
0 commit comments