[bitnami/parse] Use different liveness/readiness probes (#26131)

Signed-off-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
David Gomez
2024-05-20 18:22:28 +02:00
committed by GitHub
parent d55ce42aa3
commit 4042c9c207
4 changed files with 6 additions and 11 deletions

View File

@@ -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"

View File

@@ -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

View File

@@ -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 }}

View File

@@ -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 }}