Fix case on Value

This commit is contained in:
Florian Piesche 2021-03-14 22:19:26 +00:00
parent e54f07fd3f
commit 5b83a90e73
No known key found for this signature in database
GPG key ID: CF7283FB896221F3

View file

@ -52,9 +52,9 @@ spec:
command: command:
- stat - stat
- /run/funkwhale/funkwhale.sock - /run/funkwhale/funkwhale.sock
failureThreshold: {{ .values.api.readinessProbe.failureThreshold | default 3 }} failureThreshold: {{ .Values.api.readinessProbe.failureThreshold | default 3 }}
periodSeconds: {{ .values.api.readinessProbe.periodSeconds | default 10 }} periodSeconds: {{ .Values.api.readinessProbe.periodSeconds | default 10 }}
initialDelaySeconds: {{ .values.api.readinessProbe.initialDelaySeconds | default 5 }} initialDelaySeconds: {{ .Values.api.readinessProbe.initialDelaySeconds | default 5 }}
envFrom: envFrom:
- configMapRef: - configMapRef:
name: {{ include "funkwhale.fullname" . }} name: {{ include "funkwhale.fullname" . }}
@ -100,15 +100,15 @@ spec:
httpGet: httpGet:
path: / path: /
port: http port: http
failureThreshold: {{ .values.front.livenessProbe.failureThreshold | default 3 }} failureThreshold: {{ .Values.front.livenessProbe.failureThreshold | default 3 }}
periodSeconds: {{ .values.front.livenessProbe.periodSeconds | default 10 }} periodSeconds: {{ .Values.front.livenessProbe.periodSeconds | default 10 }}
initialDelaySeconds: {{ .values.front.livenessProbe.initialDelaySeconds | default 5 }} initialDelaySeconds: {{ .Values.front.livenessProbe.initialDelaySeconds | default 5 }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
failureThreshold: {{ .values.front.readinessProbe.failureThreshold | default 3 }} failureThreshold: {{ .Values.front.readinessProbe.failureThreshold | default 3 }}
periodSeconds: {{ .values.front.readinessProbe.periodSeconds | default 10 }} periodSeconds: {{ .Values.front.readinessProbe.periodSeconds | default 10 }}
initialDelaySeconds: {{ .values.front.readinessProbe.initialDelaySeconds | default 5 }} initialDelaySeconds: {{ .Values.front.readinessProbe.initialDelaySeconds | default 5 }}
volumeMounts: volumeMounts:
- mountPath: /run/funkwhale - mountPath: /run/funkwhale
name: funkwhale-sock name: funkwhale-sock