From 04d0b59f97b6f1851b893950e38113495fdfa807 Mon Sep 17 00:00:00 2001 From: mickkael <19755421+mickkael@users.noreply.github.com> Date: Sat, 31 Jan 2026 23:32:38 +0800 Subject: [PATCH 1/2] Probes can be disabled in Helm chart Signed-off-by: mickkael <19755421+mickkael@users.noreply.github.com> --- ci/helm-chart/templates/deployment.yaml | 4 ++++ ci/helm-chart/values.yaml | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/ci/helm-chart/templates/deployment.yaml b/ci/helm-chart/templates/deployment.yaml index e0e8989e5514..38b855e83abd 100644 --- a/ci/helm-chart/templates/deployment.yaml +++ b/ci/helm-chart/templates/deployment.yaml @@ -123,14 +123,18 @@ spec: containerPort: {{ .port }} protocol: {{ .protocol }} {{- end }} + {{- if ne .Values.livenessProbe.enabled false }} livenessProbe: httpGet: path: /healthz port: http + {{- end }} + {{- if ne .Values.readinessProbe.enabled false }} readinessProbe: httpGet: path: /healthz port: http + {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/ci/helm-chart/values.yaml b/ci/helm-chart/values.yaml index b0321f0e45e2..5fa1518784c4 100644 --- a/ci/helm-chart/values.yaml +++ b/ci/helm-chart/values.yaml @@ -111,6 +111,12 @@ resources: {} # cpu: 100m # memory: 1000Mi +livenessProbe: + enabled: true + +readinessProbe: + enabled: true + nodeSelector: {} tolerations: [] From ba2750ba3c4c8034073d50d255a86e71e72b0f02 Mon Sep 17 00:00:00 2001 From: mickkael <19755421+mickkael@users.noreply.github.com> Date: Sun, 8 Feb 2026 21:50:49 +0800 Subject: [PATCH 2/2] bump chart version Signed-off-by: mickkael <19755421+mickkael@users.noreply.github.com> --- ci/helm-chart/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/helm-chart/Chart.yaml b/ci/helm-chart/Chart.yaml index cbe6cb05c135..e19b5cc9235e 100644 --- a/ci/helm-chart/Chart.yaml +++ b/ci/helm-chart/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.32.0 +version: 3.32.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to