From 0063a97ebc70694452766be5057642be22446e7a Mon Sep 17 00:00:00 2001 From: Javier Salmeron Garcia Date: Thu, 4 Apr 2024 13:35:44 +0200 Subject: [PATCH] fix: :lock: Do not share same readiness/liveness probe Signed-off-by: Javier Salmeron Garcia --- bitnami/magento/templates/deployment.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bitnami/magento/templates/deployment.yaml b/bitnami/magento/templates/deployment.yaml index d1c7c390681aaf..a1c61a19a0174d 100644 --- a/bitnami/magento/templates/deployment.yaml +++ b/bitnami/magento/templates/deployment.yaml @@ -218,12 +218,8 @@ spec: livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customLivenessProbe "context" $) | nindent 12 }} {{- else if .Values.livenessProbe.enabled }} livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.livenessProbe "enabled") "context" $) | nindent 12 }} - httpGet: - path: /index.php + tcpSocket: port: http - httpHeaders: - - name: Host - value: {{ include "magento.host" . | quote }} {{- end }} {{- if .Values.customReadinessProbe }} readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customReadinessProbe "context" $) | nindent 12 }}