From 7956d054dd9d7c4282d034b3e3831646f9c23d63 Mon Sep 17 00:00:00 2001 From: David Gomez Date: Mon, 20 May 2024 17:33:28 +0200 Subject: [PATCH] [bitnami/parse] Use different liveness/readiness probes Signed-off-by: David Gomez --- bitnami/parse/Chart.lock | 6 +++--- bitnami/parse/Chart.yaml | 2 +- bitnami/parse/templates/dashboard-deployment.yaml | 3 +-- bitnami/parse/templates/server-deployment.yaml | 6 +----- 4 files changed, 6 insertions(+), 11 deletions(-) diff --git a/bitnami/parse/Chart.lock b/bitnami/parse/Chart.lock index 128718267dd10a..d33c1a16bf811b 100644 --- a/bitnami/parse/Chart.lock +++ b/bitnami/parse/Chart.lock @@ -1,9 +1,9 @@ dependencies: - name: mongodb repository: oci://registry-1.docker.io/bitnamicharts - version: 15.4.3 + version: 15.4.5 - name: common repository: oci://registry-1.docker.io/bitnamicharts version: 2.19.2 -digest: sha256:a45d8713010f48923899891a04fe6a1d0a6c0204465bcdf851203f5d66b2cef4 -generated: "2024-05-18T02:19:52.200880103Z" +digest: sha256:42de87649e954387995c9774e48822fd8e2021c52bd224dd371e6b3cde0ad3aa +generated: "2024-05-20T17:33:52.938153+02:00" diff --git a/bitnami/parse/Chart.yaml b/bitnami/parse/Chart.yaml index 5e037bc328ca3f..d8be2d9aa100af 100644 --- a/bitnami/parse/Chart.yaml +++ b/bitnami/parse/Chart.yaml @@ -38,4 +38,4 @@ maintainers: name: parse sources: - https://github.com/bitnami/charts/tree/main/bitnami/parse -version: 23.0.5 +version: 23.0.6 diff --git a/bitnami/parse/templates/dashboard-deployment.yaml b/bitnami/parse/templates/dashboard-deployment.yaml index 93f46027e488c4..a4c4d7e5949dbb 100644 --- a/bitnami/parse/templates/dashboard-deployment.yaml +++ b/bitnami/parse/templates/dashboard-deployment.yaml @@ -173,8 +173,7 @@ spec: livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.dashboard.customLivenessProbe "context" $) | nindent 12 }} {{- else if .Values.dashboard.livenessProbe.enabled }} livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.dashboard.livenessProbe "enabled") "context" $) | nindent 12 }} - httpGet: - path: / + tcpSocket: port: http-dashboard {{- end }} {{- if .Values.dashboard.customReadinessProbe }} diff --git a/bitnami/parse/templates/server-deployment.yaml b/bitnami/parse/templates/server-deployment.yaml index b9111418d8a45d..9a409c9008b327 100644 --- a/bitnami/parse/templates/server-deployment.yaml +++ b/bitnami/parse/templates/server-deployment.yaml @@ -190,12 +190,8 @@ spec: livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.server.customLivenessProbe "context" $) | nindent 12 }} {{- else if .Values.server.livenessProbe.enabled }} livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.server.livenessProbe "enabled") "context" $) | nindent 12 }} - httpGet: - path: {{ .Values.server.mountPath }}/users + tcpSocket: port: http-server - httpHeaders: - - name: X-Parse-Application-Id - value: {{ .Values.server.appId }} {{- end }} {{- if .Values.server.customReadinessProbe }} readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.server.customReadinessProbe "context" $) | nindent 12 }}