Replace RollingUpdate with Recreate

This commit is contained in:
Pim Kunis 2025-06-21 20:46:30 +02:00
parent 3868d6aa50
commit b656ad9b45
14 changed files with 27 additions and 223 deletions

View file

@ -11,15 +11,7 @@
kubernetes.resources = {
deployments.server.spec = {
selector.matchLabels.app = "radicale";
strategy = {
type = "RollingUpdate";
rollingUpdate = {
maxSurge = 0;
maxUnavailable = 1;
};
};
strategy.type = "Recreate";
template = {
metadata.labels.app = "radicale";