From a0e989f402adc4c4a22efc1b5a6d62e5df681d81 Mon Sep 17 00:00:00 2001 From: Grant <5445379+grantdhunter@users.noreply.github.com> Date: Thu, 12 Jun 2025 10:48:43 -0600 Subject: [PATCH] matrix-registration fix args, change to recreate strategy --- charts/matrix-registration/templates/deployment.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/charts/matrix-registration/templates/deployment.yaml b/charts/matrix-registration/templates/deployment.yaml index 9f2d43e..ed2fcf2 100644 --- a/charts/matrix-registration/templates/deployment.yaml +++ b/charts/matrix-registration/templates/deployment.yaml @@ -11,10 +11,7 @@ spec: name: matrix-registration app: matrix-registration strategy: - rollingUpdate: - maxSurge: 1 - maxUnavailable: 0 - type: RollingUpdate + type: Recreate template: metadata: labels: @@ -26,7 +23,7 @@ spec: - image: zeratax/matrix-registration:{{ printf "v%s" .Chart.AppVersion }} imagePullPolicy: IfNotPresent name: matrix-registration - args: ["serve", "--config-path", "/config/config.yaml"] + args: ["--config-path", "/config/config.yaml","serve"] ports: - containerPort: 5000 name: web