From 1bd80375b26e30b82e74b42764fa505dc0eb3a45 Mon Sep 17 00:00:00 2001 From: Jan Mussler Date: Mon, 10 Aug 2026 15:04:52 +0200 Subject: [PATCH] Add deployment strategy type 'Recreate' Add deployment strategy type 'Recreate' --- charts/postgres-operator/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/postgres-operator/templates/deployment.yaml b/charts/postgres-operator/templates/deployment.yaml index c2eb0ba23..5a87f0224 100644 --- a/charts/postgres-operator/templates/deployment.yaml +++ b/charts/postgres-operator/templates/deployment.yaml @@ -10,6 +10,8 @@ metadata: namespace: {{ .Release.Namespace }} spec: replicas: 1 + strategy: + type: "Recreate" selector: matchLabels: app.kubernetes.io/name: {{ template "postgres-operator.name" . }}