We are using helm charts to deploy our charts in Openshift.
This is our workflow:
- We create a new version of the helm and docker image at each sprint/ e.g 1.0.0 (saving them in a snapshot artifactory)
- During the sprint we build several times the helm chart and the docker image and push them in our snapshot artifactory every time.
- Once the helm chart and the docker image are published, we automatically deploy our chart in our test environment
- once we are ready we create the production version of the charts and the docker image: we basically publish the helm chart and the docker image in a release artifactory with the same version. From now on the helm chart and the docker images are immutable
- Now we deploy in PROD
The issue is that usually the helm-chart does not change but the docker image v1.0.0 (snapshot) may change several times during the sprint therefore when we try to upgrade the helm chart in our test env, helm does not detect any change and then the application is not updated.
To solve this situation, currently, every time that we have to deploy in the test environment, we uninstall the application and re install the helm chart (with the image pull policy == always)
I was wondering if there is a way to modify our helm chart in order to force it to redeploy when we build a new version. e.g we tried to add an annotation in the deployment.yaml : build-time: {{ now }} but this changes every time so the helm chart is always redeployed in the test environment (and usually is fine but not if we trigger a manual re-deploy of all our components).
Is it possible for example to provide a parameter during the helm package
command?
Something like helm package --set package-time=timestamp
and then we could save this value as annotation.
Any better solution?