forked from Deuxfleurs/garage
feat(helm): allow to override the init container image
This commit is contained in:
parent
fd03b184b3
commit
d20e8c9256
2 changed files with 7 additions and 1 deletions
|
@ -33,7 +33,8 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
# Copies garage.toml from configmap to temporary etc volume and replaces RPC secret placeholder
|
# Copies garage.toml from configmap to temporary etc volume and replaces RPC secret placeholder
|
||||||
- name: {{ .Chart.Name }}-init
|
- name: {{ .Chart.Name }}-init
|
||||||
image: busybox:1.28
|
image: "{{ .Values.initImage.repository }}:{{ .Values.initImage.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.initImage.pullPolicy }}
|
||||||
command: ["sh", "-c", "sed \"s/__RPC_SECRET_REPLACE__/$RPC_SECRET/\" /mnt/garage.toml > /mnt/etc/garage.toml"]
|
command: ["sh", "-c", "sed \"s/__RPC_SECRET_REPLACE__/$RPC_SECRET/\" /mnt/garage.toml > /mnt/etc/garage.toml"]
|
||||||
env:
|
env:
|
||||||
- name: RPC_SECRET
|
- name: RPC_SECRET
|
||||||
|
|
|
@ -77,6 +77,11 @@ image:
|
||||||
tag: ""
|
tag: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
initImage:
|
||||||
|
repository: busybox
|
||||||
|
tag: 1.28
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|
Loading…
Reference in a new issue