Skip to content

(WIP) (gha) add fleet test #9

(WIP) (gha) add fleet test

(WIP) (gha) add fleet test #9

Workflow file for this run

---
# yamllint disable rule:quoted-strings
name: fleet test
"on":
- push
jobs:
create-cluster:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: azure/[email protected]
- uses: helm/kind-action@v1
with:
version: v0.21.0
- run: kubectl get nodes
- run: ip -c a
- run: ip route
- run: helm repo add fleet https://rancher.github.io/fleet-helm-charts/
- run: helm -n cattle-fleet-system install --create-namespace --wait fleet-crd fleet/fleet-crd
- run: helm -n cattle-fleet-system install --create-namespace --wait fleet fleet/fleet
- run: kubectl get pods -A
- run: kubectl apply -f gitrepo-local.yaml
- run: kubectl get clusters -A
- run: kubectl get gitrepo -A
- run: ./wait-for-bundle.sh
timeout-minutes: 15