From 155df60540ada18f8c4315d41b1a3bfad11dd76d Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Thu, 2 Nov 2023 15:27:11 -0700 Subject: [PATCH] Revert "ci: use apply rather than sync for deploys" This reverts commit 25c4e6fd531136f97bbdee71aef269f05c35ccf0. The "apply" action requires the helm-diff plugin to be installed. Will revisit using an action to install and configure helmfile. --- deployments/ci.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployments/ci.sh b/deployments/ci.sh index e1d584f415..7c059716a6 100755 --- a/deployments/ci.sh +++ b/deployments/ci.sh @@ -49,7 +49,8 @@ function helm_uninstall() { # as necessary. Will *not* replace certain durable resources like # the LoadBalancer Service objects, which are annotated with helm.sh/resource-policy=keep. function helm_install() { - helmfile apply -f "$HELMFILE_MANIFEST" --args \ + # TODO: make sure helmfile is present in ci environemnt. + helmfile sync -f "$HELMFILE_MANIFEST" --args \ --set="image.tag=${PENUMBRA_VERSION}" }