From e578de7fe99208345959cb19a56e4362e38a2139 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Fri, 12 Jul 2024 13:37:16 +0200 Subject: [PATCH] chore(radicale): Update to 3.2.2.0 --- kubenix-modules/radicale.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/kubenix-modules/radicale.nix b/kubenix-modules/radicale.nix index 9f6f621..171714a 100644 --- a/kubenix-modules/radicale.nix +++ b/kubenix-modules/radicale.nix @@ -39,13 +39,23 @@ spec = { selector.matchLabels.app = "radicale"; + strategy = { + type = "RollingUpdate"; + + rollingUpdate = { + maxSurge = 0; + maxUnavailable = 1; + }; + }; + template = { metadata.labels.app = "radicale"; spec = { containers.radicale = { - image = "tomsquest/docker-radicale:3.2.0.0"; + image = "tomsquest/docker-radicale:3.2.2.0"; ports.web.containerPort = 5232; + imagePullPolicy = "Always"; volumeMounts = [ {