I was trying to override the image tag in Helm3 using upgrade command by setting the variable at command line but it did not work. Has someone tried this feature in Helm3. Stuck for last couple of days, would be helpful to know your views.
Deployment manifest file looks like this:-
containers: - image: {{ .Values.image.repository }}:{{.Values.image.tag}} imagePullPolicy: Always
Executing this command from command line:-
> helm upgrade resources-dev resources --set image.tag=72615 --dry-run --debug
does not override image tag value from 72626 to 72615
containers:
- image: aksresourcesapi.azurecr.io/microservicesinitiative:72626
imagePullPolicy: Always
Command Results:-
helm upgrade resources-dev resources --set image.tag=72615 --reuse-values
Command Results of
helm upgrade resources-dev resources --set-string image.tag=72615


