From 4ea008de7a564cfcbe90e21700e20af5f36ee519 Mon Sep 17 00:00:00 2001 From: David Landry Date: Wed, 4 Sep 2024 15:50:01 -0400 Subject: [PATCH] fix(goff): try adjusting commands --- apps/goff/base/deployment.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/goff/base/deployment.yaml b/apps/goff/base/deployment.yaml index 1043ceb..b7277f7 100644 --- a/apps/goff/base/deployment.yaml +++ b/apps/goff/base/deployment.yaml @@ -36,7 +36,10 @@ spec: containers: - name: goff image: gofeatureflag/go-feature-flag:latest - command: ["/go-feature-flag", "--config", "/goff/config.yaml"] + command: + - /go-feature-flag + - --config + - /goff/config.yaml volumeMounts: - name: config mountPath: /goff/config.yaml