From bd3ea0123474325e24fe2b87af95f6e2f20d0d36 Mon Sep 17 00:00:00 2001 From: Alberto Pinardi <39056455+albertopinardi@users.noreply.github.com> Date: Fri, 20 Sep 2024 11:05:09 +0200 Subject: [PATCH] Add missing stratupProbe on chart Signed-off-by: Alberto Pinardi <39056455+albertopinardi@users.noreply.github.com> --- charts/ps-db/templates/cluster.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/ps-db/templates/cluster.yaml b/charts/ps-db/templates/cluster.yaml index 79b6e2c2..16b19bf8 100644 --- a/charts/ps-db/templates/cluster.yaml +++ b/charts/ps-db/templates/cluster.yaml @@ -112,6 +112,10 @@ spec: {{- if $mysql.readinessProbe }} readinessProbe: {{ $mysql.readinessProbe | toYaml | indent 6 }} + {{- end }} + {{- if $mysql.startupProbe }} + startupProbe: +{{ $mysql.startupProbe | toYaml | indent 6 }} {{- end }} tolerations: {{ $mysql.tolerations | toYaml | indent 6 }}