diff --git a/.github/workflows/kind-cluster.yml b/.github/workflows/kind-cluster.yml index 7eabff0..905a4c7 100644 --- a/.github/workflows/kind-cluster.yml +++ b/.github/workflows/kind-cluster.yml @@ -25,4 +25,15 @@ jobs: - name: Verify kind cluster run: | kubectl cluster-info - kubectl get nodes \ No newline at end of file + kubectl get nodes + + - 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 + sudo mv helmfile /usr/local/bin + helmfile --version + + - name: apply helmfile + run: | + helmfile --file ./helm sync \ No newline at end of file diff --git a/README.md b/README.md index abf041f..b4ab051 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Deploy a local kubernetes cluster for development purpose. This repository conta - [Docker](https://docs.docker.com/get-docker/) - [Kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) -- [Helmfile](https://github.com/roboll/helmfile) +- [Helmfile](https://github.com/helmfile/helmfile) ## Usage