From 5b83a90e731154407785527a1a68b245389bc5c4 Mon Sep 17 00:00:00 2001 From: Florian Piesche Date: Sun, 14 Mar 2021 22:19:26 +0000 Subject: [PATCH] Fix case on Value --- charts/funkwhale/templates/deployment.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/charts/funkwhale/templates/deployment.yaml b/charts/funkwhale/templates/deployment.yaml index 5cb8e11..9229909 100644 --- a/charts/funkwhale/templates/deployment.yaml +++ b/charts/funkwhale/templates/deployment.yaml @@ -52,9 +52,9 @@ spec: command: - stat - /run/funkwhale/funkwhale.sock - failureThreshold: {{ .values.api.readinessProbe.failureThreshold | default 3 }} - periodSeconds: {{ .values.api.readinessProbe.periodSeconds | default 10 }} - initialDelaySeconds: {{ .values.api.readinessProbe.initialDelaySeconds | default 5 }} + failureThreshold: {{ .Values.api.readinessProbe.failureThreshold | default 3 }} + periodSeconds: {{ .Values.api.readinessProbe.periodSeconds | default 10 }} + initialDelaySeconds: {{ .Values.api.readinessProbe.initialDelaySeconds | default 5 }} envFrom: - configMapRef: name: {{ include "funkwhale.fullname" . }} @@ -100,15 +100,15 @@ spec: httpGet: path: / port: http - failureThreshold: {{ .values.front.livenessProbe.failureThreshold | default 3 }} - periodSeconds: {{ .values.front.livenessProbe.periodSeconds | default 10 }} - initialDelaySeconds: {{ .values.front.livenessProbe.initialDelaySeconds | default 5 }} + failureThreshold: {{ .Values.front.livenessProbe.failureThreshold | default 3 }} + periodSeconds: {{ .Values.front.livenessProbe.periodSeconds | default 10 }} + initialDelaySeconds: {{ .Values.front.livenessProbe.initialDelaySeconds | default 5 }} readinessProbe: tcpSocket: port: http - failureThreshold: {{ .values.front.readinessProbe.failureThreshold | default 3 }} - periodSeconds: {{ .values.front.readinessProbe.periodSeconds | default 10 }} - initialDelaySeconds: {{ .values.front.readinessProbe.initialDelaySeconds | default 5 }} + failureThreshold: {{ .Values.front.readinessProbe.failureThreshold | default 3 }} + periodSeconds: {{ .Values.front.readinessProbe.periodSeconds | default 10 }} + initialDelaySeconds: {{ .Values.front.readinessProbe.initialDelaySeconds | default 5 }} volumeMounts: - mountPath: /run/funkwhale name: funkwhale-sock