Skip to content

Commit

Permalink
[bitnami/parse] Use different liveness/readiness probes (bitnami#26131)
Browse files Browse the repository at this point in the history
Signed-off-by: David Gomez <[email protected]>
Signed-off-by: Fran Mulero <[email protected]>
  • Loading branch information
dgomezleon authored and fmulero committed May 22, 2024
1 parent 87cf1ae commit d875ba8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
6 changes: 3 additions & 3 deletions bitnami/parse/Chart.lock
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion bitnami/parse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 1 addition & 2 deletions bitnami/parse/templates/dashboard-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 1 addition & 5 deletions bitnami/parse/templates/server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit d875ba8

Please sign in to comment.