Skip to content
Snippets Groups Projects

Use Configmap instead of ENV variables

Merged Tom Teichler requested to merge aleksis-configmap into master
1 file
+ 39
39
Compare changes
  • Side-by-side
  • Inline
+ 39
39
@@ -68,45 +68,45 @@ spec:
name: {{ template "aleksis.fullname" . }}-aleksis-backup
- mountPath: /etc/aleksis
name: {{ template "aleksis.fullname" . }}-config
# livenessProbe:
# httpGet:
# path: /health/
# port: http
# httpHeaders:
# - name: Accept
# value: application/json
# {{- if .Values.ingress.enabled }}
# - name: Host
# value: {{ include "aleksis.fqdn" . | quote }}
# {{- end }}
# initialDelaySeconds: 60
# periodSeconds: 30
# timeoutSeconds: 5
# startupProbe:
# httpGet:
# path: /
# port: http
# {{- if .Values.ingress.enabled }}
# httpHeaders:
# - name: Host
# value: {{ include "aleksis.fqdn" . | quote }}
# {{- end }}
# failureThreshold: 30
# periodSeconds: 10
# readinessProbe:
# httpGet:
# path: /health/
# port: http
# httpHeaders:
# - name: Accept
# value: application/json
# {{- if .Values.ingress.enabled }}
# - name: Host
# value: {{ include "aleksis.fqdn" . | quote }}
# {{- end }}
# initialDelaySeconds: 60
# periodSeconds: 30
# timeoutSeconds: 5
livenessProbe:
httpGet:
path: /health/
port: http
httpHeaders:
- name: Accept
value: application/json
{{- if .Values.ingress.enabled }}
- name: Host
value: {{ include "aleksis.fqdn" . | quote }}
{{- end }}
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
startupProbe:
httpGet:
path: /
port: http
{{- if .Values.ingress.enabled }}
httpHeaders:
- name: Host
value: {{ include "aleksis.fqdn" . | quote }}
{{- end }}
failureThreshold: 30
periodSeconds: 10
readinessProbe:
httpGet:
path: /health/
port: http
httpHeaders:
- name: Accept
value: application/json
{{- if .Values.ingress.enabled }}
- name: Host
value: {{ include "aleksis.fqdn" . | quote }}
{{- end }}
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumes:
Loading