load-balancer-and-ingress-services-for-kubernetes
load-balancer-and-ingress-services-for-kubernetes copied to clipboard
Image tag should be overridable
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 }}"
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