From 175d80db16d662565b499ce8258fc4680d95ff92 Mon Sep 17 00:00:00 2001 From: Jacques ROUSSEL Date: Thu, 20 Nov 2025 15:09:01 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F(helmfile)=20rename=20helmfil?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename helmfile to helmfile.yaml.gotmpl to be compatible with helmfile 0.162 and 1.1.9 --- .github/workflows/helmfile-linter.yaml | 6 +++--- src/helm/helmfile.gotmpl | 1 - src/helm/{helmfile.yaml => helmfile.yaml.gotmpl} | 0 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 120000 src/helm/helmfile.gotmpl rename src/helm/{helmfile.yaml => helmfile.yaml.gotmpl} (100%) diff --git a/.github/workflows/helmfile-linter.yaml b/.github/workflows/helmfile-linter.yaml index 6743df99..dcea93ae 100644 --- a/.github/workflows/helmfile-linter.yaml +++ b/.github/workflows/helmfile-linter.yaml @@ -21,10 +21,10 @@ jobs: shell: bash run: | set -e - HELMFILE=src/helm/helmfile.yaml + HELMFILE=src/helm/helmfile.yaml.gotmpl environments=$(awk 'BEGIN {in_env=0} /^environments:/ {in_env=1; next} /^---/ {in_env=0} in_env && /^ [^ ]/ {gsub(/^ /,""); gsub(/:.*$/,""); print}' "$HELMFILE") for env in $environments; do echo "################### $env lint ###################" - helmfile -e $env -f $HELMFILE lint || exit 1 + helmfile -e $env lint -f $HELMFILE || exit 1 echo -e "\n" - done \ No newline at end of file + done diff --git a/src/helm/helmfile.gotmpl b/src/helm/helmfile.gotmpl deleted file mode 120000 index c61ca353..00000000 --- a/src/helm/helmfile.gotmpl +++ /dev/null @@ -1 +0,0 @@ -helmfile.yaml \ No newline at end of file diff --git a/src/helm/helmfile.yaml b/src/helm/helmfile.yaml.gotmpl similarity index 100% rename from src/helm/helmfile.yaml rename to src/helm/helmfile.yaml.gotmpl