From 104542140e067fb1a1346426e1226b8ee6395423 Mon Sep 17 00:00:00 2001 From: Lars Wefald Date: Fri, 27 Oct 2023 19:46:07 +0200 Subject: [PATCH] Small fix to k8s plan script. --- scripts/k8s-plan.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/k8s-plan.sh b/scripts/k8s-plan.sh index b9f7fb8..1452f41 100755 --- a/scripts/k8s-plan.sh +++ b/scripts/k8s-plan.sh @@ -2,6 +2,8 @@ set -euxo pipefail +mkdir -p "$(dirname "$MANIFEST_OUTPUT")" + kustomize build deployments/kubernetes | envsubst >"$MANIFEST_OUTPUT" # To avoid failing when there is a diff. set +e