From 448408fe63068a4d8fbbd3ce5ca32937235a8a34 Mon Sep 17 00:00:00 2001 From: kaverkiev Date: Thu, 8 Jan 2026 19:04:34 +0300 Subject: [PATCH] fixed koodo deployment --- charts/koodo-reader/templates/deployment.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/charts/koodo-reader/templates/deployment.yaml b/charts/koodo-reader/templates/deployment.yaml index 0733055..df41467 100644 --- a/charts/koodo-reader/templates/deployment.yaml +++ b/charts/koodo-reader/templates/deployment.yaml @@ -43,21 +43,23 @@ spec: {{- end }} {{- if .Values.livenessProbe.enabled }} livenessProbe: - {{- toYaml .Values.livenessProbe.httpGet | nindent 12 }} + httpGet: + path: {{ .Values.livenessProbe.httpGet.path }} + port: {{ .Values.livenessProbe.httpGet.port }} initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }} failureThreshold: {{ .Values.livenessProbe.failureThreshold }} - successThreshold: {{ .Values.livenessProbe.successThreshold }} {{- end }} {{- if .Values.readinessProbe.enabled }} readinessProbe: - {{- toYaml .Values.readinessProbe.httpGet | nindent 12 }} + httpGet: + path: {{ .Values.readinessProbe.httpGet.path }} + port: {{ .Values.readinessProbe.httpGet.port }} initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.readinessProbe.periodSeconds }} timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }} failureThreshold: {{ .Values.readinessProbe.failureThreshold }} - successThreshold: {{ .Values.readinessProbe.successThreshold }} {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }}