Skip to content

Initial Commit

Initial Commit #4

Workflow file for this run

name: Create a kind cluster
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: Create a kind cluster
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up kind cluster
run: |
chmod +x ./create_cluster.sh
./create_cluster.sh
- name: Verify kind cluster
run: |
kubectl cluster-info
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