We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the AKO chart the image tag is hard coded:
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
We rebuild all of our open source images in our own repository and apply a build date suffix. We can't use the chart as it is without modifying it.
Standard practice is to allow the image tag to be overridden and have the image tag supplied in the default values.yaml file. Like this:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
The text was updated successfully, but these errors were encountered:
Implementing the vmware bitnami common library & standards would also resolve this request:
dependencies: - name: common repository: oci://registry-1.docker.io/bitnamicharts tags: - bitnami-common version: 2.x.x
Established patterns to then follow would be:
and
Sorry, something went wrong.
No branches or pull requests
In the AKO chart the image tag is hard coded:
We rebuild all of our open source images in our own repository and apply a build date suffix. We can't use the chart as it is without modifying it.
Standard practice is to allow the image tag to be overridden and have the image tag supplied in the default values.yaml file. Like this:
The text was updated successfully, but these errors were encountered: