pull/6057/merge
Anthony B. 4 months ago committed by GitHub
commit f4402b6c36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -18,3 +18,4 @@ ssl:
logLevel: $(LOG_LEVEL:info) logLevel: $(LOG_LEVEL:info)
logFormat: $(LOG_FORMAT:default) logFormat: $(LOG_FORMAT:default)
ha: $(HA_ACTIVE) ha: $(HA_ACTIVE)
offline: $(OFFLINE_ACTIVE:false)

@ -38,6 +38,10 @@ spec:
resources: resources:
{{- toYaml .Values.sideload.resources | nindent 12 }} {{- toYaml .Values.sideload.resources | nindent 12 }}
{{- end }} {{- end }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
securityContext: securityContext:
@ -81,6 +85,8 @@ spec:
{{- end }} {{- end }}
- name: HA_ACTIVE - name: HA_ACTIVE
value: {{ .Values.replicaCount | int | le 2 | quote }} value: {{ .Values.replicaCount | int | le 2 | quote }}
- name: OFFLINE_ACTIVE
value: "{{ default "false" .Values.offline }}"
{{- with .Values.volumeMounts }} {{- with .Values.volumeMounts }}
volumeMounts: volumeMounts:
{{- toYaml . | nindent 12 }} {{- toYaml . | nindent 12 }}

@ -4,6 +4,8 @@
replicaCount: 1 replicaCount: 1
revisionHistoryLimit: 10 revisionHistoryLimit: 10
# If sideload is enable, set the offline parameter to true
offline: false
image: image:
repository: requarks/wiki repository: requarks/wiki

Loading…
Cancel
Save