Allow to set kubectl image

This commit is contained in:
Ettore Di Giacinto
2022-11-11 11:06:34 +01:00
parent b9d542dd63
commit f281ba4fb6
3 changed files with 7 additions and 2 deletions

View File

@@ -7,5 +7,5 @@ home: https://kairos.io/
maintainers:
- name: Ettore Di Giacinto
email: mudler@kairos.io
version: 0.0.2
appVersion: "v0.1.0"
version: 0.0.3
appVersion: "v0.1.1"

View File

@@ -48,6 +48,7 @@ spec:
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
- --kubectl-image={{ .Values.image.kubectlRepository | default "quay.io/kairos/kubectl" }}:{{ .Values.image.kubectlTag | default .Chart.AppVersion }}
command:
- /manager
image: '{{ .Values.image.repository | default "quay.io/kairos/entangle-proxy" }}:{{ .Values.image.tag | default .Chart.AppVersion }}'

View File

@@ -16,6 +16,10 @@ image:
repository: ""
# image tag, leave empty to use chart's AppVersion
tag: ""
# kubectl image tag, leave empty to use chart's AppVersion
kubectlTag: ""
# kubectl image to be used
kubectlRepository: ""
podAnnotations: {}
nodeSelector: {}