Right now the image tag pulled by kubernetes defaults to latest, with the image pull policy IfNotPresent this leads to the image not being updated. This PR fixes this by dropping the image tag from the values file and updating the appVresion to the container image tag when packaging the helm chart.
I am not exactly sure what the next tag should be since the artifact hub shows an app version of 1.1.0. Either break with semver and just use 0.2.x or bump everything to 2.x. If you think the appVersion should be set some other way let me know.
Right now the image tag pulled by kubernetes defaults to
latest
, with the image pull policyIfNotPresent
this leads to the image not being updated. This PR fixes this by dropping the image tag from the values file and updating theappVresion
to the container image tag when packaging the helm chart.I am not exactly sure what the next tag should be since the artifact hub shows an app version of
1.1.0
. Either break with semver and just use0.2.x
or bump everything to2.x
. If you think the appVersion should be set some other way let me know.