diff --git a/charts/virtual-kubelet/README.md b/charts/virtual-kubelet/README.md index 840d9760..a988fdc1 100644 --- a/charts/virtual-kubelet/README.md +++ b/charts/virtual-kubelet/README.md @@ -62,7 +62,7 @@ The following table lists the configurable parameters of the azure-aci chart and | image.tag | Image release version/tag. | `latest` | | image.pullPolicy | Image pull policy. | `Always` | | initImage.name | Init container image name. | `oss/virtual-kubelet/init-validation` | -| initImage.tag | Init container image release version/tag. | `0.1.0` | +| initImage.initTag | Init container image release version/tag. | `0.1.0` | | initImage.pullPolicy | Init container image pull policy. | `Always` | | nodeName | The node name that will be assigned to be the VK one. | `virtual-node-aci-linux-helm` | | nodeOsType | The node/VM type. Values should be `Windows` or `Linux`. | `Linux` | diff --git a/charts/virtual-kubelet/templates/deployment.yaml b/charts/virtual-kubelet/templates/deployment.yaml index 80767c29..365037ae 100644 --- a/charts/virtual-kubelet/templates/deployment.yaml +++ b/charts/virtual-kubelet/templates/deployment.yaml @@ -22,7 +22,7 @@ spec: {{- if .Values.useVKVersion2 }} initContainers: - name: init-validation - image: "{{ .Values.initImage.repository }}/{{ .Values.initImage.name }}:{{ .Values.initImage.tag }}" + image: "{{ .Values.initImage.repository }}/{{ .Values.initImage.name }}:{{ .Values.initImage.initTag }}" imagePullPolicy: {{ .Values.initImage.pullPolicy }} env: - name: USE_VK_VERSION_2 diff --git a/charts/virtual-kubelet/values.yaml b/charts/virtual-kubelet/values.yaml index 7a3d75f0..c42c162e 100644 --- a/charts/virtual-kubelet/values.yaml +++ b/charts/virtual-kubelet/values.yaml @@ -8,7 +8,7 @@ image: initImage: repository: mcr.microsoft.com name: oss/virtual-kubelet/init-validation - tag: 1.5.0 + initTag: 0.1.0 pullPolicy: Always namespace: vk-azure-aci