mount volume in sideload container

pull/7963/head
liviu-vasut 3 days ago committed by GitHub
parent f0f71536ab
commit e4b111d1d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -37,6 +37,10 @@ spec:
args: [ "mkdir -p /wiki/data/sideload && git clone --depth=1 {{ .Values.sideload.repoURL }} /wiki/data/sideload/" ]
resources:
{{- toYaml .Values.sideload.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
@ -103,6 +107,8 @@ spec:
{{- end }}
- name: HA_ACTIVE
value: {{ .Values.replicaCount | int | le 2 | quote }}
- name: OFFLINE_ACTIVE
value: {{ default false .Values.offline | quote }}
{{- with .Values.extraEnvVars }}
{{- toYaml . | nindent 12 }}
{{- end }}

Loading…
Cancel
Save