fix #141 - use host network to match GitHub Actions runners (#142)

This commit is contained in:
Casey Lee
2020-03-09 17:43:24 -07:00
committed by GitHub
parent bd6f232b20
commit 143676fcfb
4 changed files with 35 additions and 19 deletions

13
pkg/runner/testdata/issue-141/main.yaml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: "Create cluster using KinD"
on: push
jobs:
kind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: engineerd/setup-kind@v0.3.0
- name: Testing
run: |
kubectl cluster-info
kubectl get pods -n kube-system