Skip to content

Commit df31edd

Browse files
fix: make cfssl image configurable in helm values
Signed-off-by: killianmuldoon <[email protected]>
1 parent 25dc19f commit df31edd

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

charts/kamaji/templates/etcd_job_preinstall.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
restartPolicy: Never
2020
initContainers:
2121
- name: cfssl
22-
image: cfssl/cfssl:latest
22+
image: "{{ .Values.cfssl.image.repository }}:{{ .Values.cfssl.image.tag }}"
2323
command:
2424
- bash
2525
- -c

charts/kamaji/values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -214,3 +214,8 @@ datastore:
214214
namespace:
215215
# -- Key of the Secret which contains the content of the private key.
216216
keyPath:
217+
218+
cfssl:
219+
image:
220+
repository: cfssl/cfssl
221+
tag: latest

0 commit comments

Comments
 (0)