From 44384d7983caf52761a33745913eb8b48d4b8d51 Mon Sep 17 00:00:00 2001 From: David Gomez Date: Fri, 24 May 2024 08:50:47 +0200 Subject: [PATCH] [bitnami/appsmith] Use different liveness/readiness probes (#26332) * [bitnami/appsmith] Use different liveness/readiness probes Signed-off-by: David Gomez * [bitnami/appsmith] Use health endpoint Signed-off-by: David Gomez --------- Signed-off-by: David Gomez --- bitnami/appsmith/CHANGELOG.md | 8 ++++++-- bitnami/appsmith/Chart.lock | 8 ++++---- bitnami/appsmith/Chart.yaml | 2 +- bitnami/appsmith/templates/backend/deployment.yaml | 7 +++---- bitnami/appsmith/templates/client/deployment.yaml | 3 +-- bitnami/appsmith/templates/rts/deployment.yaml | 3 +-- 6 files changed, 16 insertions(+), 15 deletions(-) diff --git a/bitnami/appsmith/CHANGELOG.md b/bitnami/appsmith/CHANGELOG.md index 02b6794b3d..40c8df435f 100644 --- a/bitnami/appsmith/CHANGELOG.md +++ b/bitnami/appsmith/CHANGELOG.md @@ -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)) + +## 3.2.1 (2024-05-22) + +* [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) diff --git a/bitnami/appsmith/Chart.lock b/bitnami/appsmith/Chart.lock index fc86c26122..4b720f4849 100644 --- a/bitnami/appsmith/Chart.lock +++ b/bitnami/appsmith/Chart.lock @@ -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" diff --git a/bitnami/appsmith/Chart.yaml b/bitnami/appsmith/Chart.yaml index 20fc741d68..4a9439a442 100644 --- a/bitnami/appsmith/Chart.yaml +++ b/bitnami/appsmith/Chart.yaml @@ -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 diff --git a/bitnami/appsmith/templates/backend/deployment.yaml b/bitnami/appsmith/templates/backend/deployment.yaml index 34c8485f3d..54d823dbe3 100644 --- a/bitnami/appsmith/templates/backend/deployment.yaml +++ b/bitnami/appsmith/templates/backend/deployment.yaml @@ -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 }} diff --git a/bitnami/appsmith/templates/client/deployment.yaml b/bitnami/appsmith/templates/client/deployment.yaml index b354c0d54b..fdffa37d4c 100644 --- a/bitnami/appsmith/templates/client/deployment.yaml +++ b/bitnami/appsmith/templates/client/deployment.yaml @@ -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 }} diff --git a/bitnami/appsmith/templates/rts/deployment.yaml b/bitnami/appsmith/templates/rts/deployment.yaml index b9fe819638..2f5fe4bfbb 100644 --- a/bitnami/appsmith/templates/rts/deployment.yaml +++ b/bitnami/appsmith/templates/rts/deployment.yaml @@ -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 }}