Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try vfkit in gihtub action #541

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,29 @@ jobs:
nslookup \
-- \
nslookup kubernetes.default.svc.cluster.local
test-macos-vfkit-driver:
runs-on: macos-14
steps:
- name: setup vfkit
shell: bash
run: |
brew install kubernetes-cli
brew tap cfergeau/crc
brew install vfkit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: ./
with:
driver: vfkit
start-args: '--wait-timeout=15m'
- run: |
kubectl --namespace=kube-system rollout status deployment/coredns --timeout=60s --watch
# Test basic networking and DNS resolution
- run: |
kubectl run \
--attach \
--image=docker.io/busybox \
--restart=Never \
--rm \
nslookup \
-- \
nslookup kubernetes.default.svc.cluster.local
Loading