From bd8e361f652000e4020572bf10f8672f9cb3db17 Mon Sep 17 00:00:00 2001 From: Jan Mussler Date: Tue, 11 Aug 2026 09:14:13 +0200 Subject: [PATCH] Add deployment strategy type 'Recreate' (#3164) 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" . }}