Skip to content

Commit

Permalink
[bitnami/supabase] Use different liveness/readiness probes (#26164)
Browse files Browse the repository at this point in the history
* [bitnami/supabase] Use different liveness/readiness probes

Signed-off-by: David Gomez <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <[email protected]>

---------

Signed-off-by: David Gomez <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
  • Loading branch information
dgomezleon and bitnami-bot authored May 22, 2024
1 parent 3866771 commit a1c199e
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
7 changes: 6 additions & 1 deletion bitnami/supabase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 5.1.1 (2024-05-21)

* [bitnami/supabase] Use different liveness/readiness probes ([#26164](https://github.com/bitnami/charts/pulls/26164))

## 5.1.0 (2024-05-21)

* [bitnami/supabase] feat: :sparkles: :lock: Add warning when original images are replaced ([#26281](https://github.com/bitnami/charts/pulls/26281))
* [bitnami/*] ci: :construction_worker: Add tag and changelog support (#25359) ([91c707c](https://github.com/bitnami/charts/commit/91c707c)), closes [#25359](https://github.com/bitnami/charts/issues/25359)
* [bitnami/supabase] feat: :sparkles: :lock: Add warning when original images are replaced (#26281) ([61ce235](https://github.com/bitnami/charts/commit/61ce235)), closes [#26281](https://github.com/bitnami/charts/issues/26281)

## 5.0.0 (2024-05-20)

Expand Down
1 change: 1 addition & 0 deletions bitnami/supabase/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ dependencies:
version: 2.19.3
digest: sha256:f360cf1690852b373580059710c60ba0b2ab68fc0b5f911c180a63ad9b777340
generated: "2024-05-21T14:42:51.543426964+02:00"

3 changes: 2 additions & 1 deletion bitnami/supabase/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ maintainers:
name: supabase
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/supabase
version: 5.1.0
version: 5.1.1

3 changes: 1 addition & 2 deletions bitnami/supabase/templates/auth/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.auth.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.auth.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.auth.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /health
tcpSocket:
port: http
{{- end }}
{{- if .Values.auth.customReadinessProbe }}
Expand Down
3 changes: 1 addition & 2 deletions bitnami/supabase/templates/meta/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.meta.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.meta.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.meta.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /health
tcpSocket:
port: http
{{- end }}
{{- if .Values.meta.customReadinessProbe }}
Expand Down
3 changes: 1 addition & 2 deletions bitnami/supabase/templates/realtime/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.realtime.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.realtime.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.realtime.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /
tcpSocket:
port: http
{{- end }}
{{- if .Values.realtime.customReadinessProbe }}
Expand Down
3 changes: 1 addition & 2 deletions bitnami/supabase/templates/rest/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.rest.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.rest.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.rest.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /
tcpSocket:
port: http
{{- end }}
{{- if .Values.rest.customReadinessProbe }}
Expand Down
3 changes: 1 addition & 2 deletions bitnami/supabase/templates/storage/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.storage.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.storage.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.storage.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /status
tcpSocket:
port: http
{{- end }}
{{- if .Values.storage.customReadinessProbe }}
Expand Down
3 changes: 1 addition & 2 deletions bitnami/supabase/templates/studio/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.studio.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.studio.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.studio.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /
tcpSocket:
port: http-studio
{{- end }}
{{- if .Values.studio.customReadinessProbe }}
Expand Down

0 comments on commit a1c199e

Please sign in to comment.