Centralize image tags and chart version of HelmRelease in kustomization #3747
Unanswered
rileyai-dev
asked this question in
Q&A
Replies: 2 comments 7 replies
-
I have a similar question. I wanted to configure the following:
In my example, I had a JSON6902 patch in Yaml format but the In the
|
Beta Was this translation helpful? Give feedback.
5 replies
-
Two things:
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to centralize versions (chart and image) in one
Kustomization
file to be able to compare my different environments. The problem is thatpatches
don't seem to be supported by image update automation. I have tried different scenarios.Here is my HelmRelease:
And my Kustomization file:
If I try to remove the chart version and image tag from the HelmRelease, I get the following kustomization:
But this won't work since the patch is a string block.
I was not able to use the recommended method since I don't use an image repository but use a chart with a
sourceRef
(would appreciate to have a solution for that). There is also another caveat, it doesn't allow to change the chart version.I've tried the following but it doesn't work either (and it's also without the chart version):
I've also tried to put the full name of the image:
1122334455.dkr.ecr.us-east-2.amazonaws.com/linker
without success.I have two questions:
Kustomization
images withHelmRelease
andsourceRef
(instead ofrepository
)?Kustomization
file that is supported by the image update automation?Beta Was this translation helpful? Give feedback.
All reactions