This commit is contained in:
parent
fbcf8a2bcf
commit
d5722edd95
1 changed files with 6 additions and 3 deletions
|
@ -24,19 +24,22 @@ spec:
|
|||
{{- end }}
|
||||
securityContext:
|
||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||
{{ if .Values.downloadVoices }}
|
||||
{{- if .Values.downloadVoices }}
|
||||
initContainers:
|
||||
- name: download-voices
|
||||
securityContext:
|
||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||
image: registry.fedoraproject.org/fedora-minimal
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
command: curl --remote-name-all {{ join " " .Values.downloadVoices }}
|
||||
command:
|
||||
- "curl"
|
||||
- "--remote-name-all"
|
||||
{{ .Values.downloadVoices | toYaml }}
|
||||
workingDir: /data
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /data
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
securityContext:
|
||||
|
|
Loading…
Reference in a new issue