[bitnami/appsmith] Use different liveness/readiness probes (#26332)

* [bitnami/appsmith] Use different liveness/readiness probes

Signed-off-by: David Gomez <dgomezleon@vmware.com>

* [bitnami/appsmith] Use health endpoint

Signed-off-by: David Gomez <dgomezleon@vmware.com>

---------

Signed-off-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
David Gomez
2024-05-24 08:50:47 +02:00
committed by GitHub
parent 0722a57fe1
commit 44384d7983
6 changed files with 16 additions and 15 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog
## 3.2.1 (2024-05-22)
## 3.2.2 (2024-05-23)
* [bitnami/appsmith] Release 3.2.1 ([#26335](https://github.com/bitnami/charts/pull/26335))
* [bitnami/appsmith] Use different liveness/readiness probes ([#26332](https://github.com/bitnami/charts/pull/26332))
## <small>3.2.1 (2024-05-22)</small>
* [bitnami/appsmith] Release 3.2.1 (#26335) ([091403e](https://github.com/bitnami/charts/commit/091403e4e8ee633aedc047c9fe713c7215152e71)), closes [#26335](https://github.com/bitnami/charts/issues/26335)
## 3.2.0 (2024-05-21)
+4 -4
View File
@@ -1,12 +1,12 @@
dependencies:
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 19.4.0
version: 19.5.0
- name: mongodb
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.5.1
version: 15.5.2
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.19.3
digest: sha256:ca11d14a9b288a39f6e78da9f528ae7ff17ed76dfdcc30a7b8d032ca100e969b
generated: "2024-05-22T13:33:45.402484875Z"
digest: sha256:f918e85ea46e0e3aaf864c2a6d9e0a3bdb85aa41f89fb23004bbbc0c19edbf36
generated: "2024-05-23T16:38:10.276516+02:00"
+1 -1
View File
@@ -39,4 +39,4 @@ maintainers:
name: appsmith
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/appsmith
version: 3.2.1
version: 3.2.2
@@ -215,8 +215,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.backend.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.backend.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.backend.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /api/v1/users/me
tcpSocket:
port: http
{{- end }}
{{- if .Values.backend.customReadinessProbe }}
@@ -224,7 +223,7 @@ spec:
{{- else if .Values.backend.readinessProbe.enabled }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.backend.readinessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /api/v1/users/me
path: /api/v1/health
port: http
{{- end }}
{{- if .Values.backend.customStartupProbe }}
@@ -232,7 +231,7 @@ spec:
{{- else if .Values.backend.startupProbe.enabled }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.backend.startupProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /api/v1/users/me
path: /api/v1/health
port: http
{{- end }}
{{- end }}
@@ -163,8 +163,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.client.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.client.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.client.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /
tcpSocket:
port: http
{{- end }}
{{- if .Values.client.customReadinessProbe }}
@@ -139,8 +139,7 @@ spec:
livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.rts.customLivenessProbe "context" $) | nindent 12 }}
{{- else if .Values.rts.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.rts.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /rts-api/v1/health-check
tcpSocket:
port: http
{{- end }}
{{- if .Values.rts.customReadinessProbe }}