Skip to content

Commit

Permalink
Also, in the kind-cluster.yml workflow file, the helmfile download UR…
Browse files Browse the repository at this point in the history
…L was corrected from darwin to linux version, and added file permission change step to make helmfile executable after being moved to /usr/local/bin directory.
  • Loading branch information
shahariaazam committed Dec 17, 2023
1 parent 4a503b2 commit 3954f50
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/kind-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
- name: install helmfile
run: |
curl -LO https://github.com/helmfile/helmfile/releases/download/v0.159.0/helmfile_0.159.0_darwin_amd64.tar.gz
tar -xzvf helmfile_0.159.0_darwin_amd64.tar.gz
curl -LO https://github.com/helmfile/helmfile/releases/download/v0.159.0/helmfile_0.159.0_linux_amd64.tar.gz
tar -xzvf helmfile_0.159.0_linux_amd64.tar.gz
sudo mv helmfile /usr/local/bin
chmod +x /usr/local/bin/helmfile
helmfile --version
- name: apply helmfile
Expand Down

0 comments on commit 3954f50

Please sign in to comment.