From 8b7aafbd50288206343cfbea03ca46a95816e61e Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Mon, 15 Jul 2024 14:52:47 -0700 Subject: [PATCH 1/4] add macos docker test --- .github/workflows/test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3c5ffdbd..174a2be0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -117,3 +117,28 @@ jobs: nslookup \ -- \ nslookup kubernetes.default.svc.cluster.local + test-macos-docker-driver: + runs-on: macos-14 + steps: + - name: setup docker + shell: bash + run: | + brew install docker + colima start + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + - uses: ./ + with: + driver: docker + - 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 + From 32ff17ff0b07011dacf96190af4e28d78a3d3ebf Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Mon, 15 Jul 2024 14:54:39 -0700 Subject: [PATCH 2/4] mac12 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 174a2be0..f06c5585 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -118,7 +118,7 @@ jobs: -- \ nslookup kubernetes.default.svc.cluster.local test-macos-docker-driver: - runs-on: macos-14 + runs-on: macos-12 steps: - name: setup docker shell: bash From 03717921fd75d68bd3cc66ff60f8f8d4d17dfc79 Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Mon, 15 Jul 2024 15:08:22 -0700 Subject: [PATCH 3/4] install kubectl and add mac14 --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f06c5585..8608fd5a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -123,6 +123,7 @@ jobs: - name: setup docker shell: bash run: | + brew install kubernetes-cli brew install docker colima start - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 @@ -142,3 +143,30 @@ jobs: -- \ nslookup kubernetes.default.svc.cluster.local +test-macos13-docker-driver: + runs-on: macos-14 + steps: + - name: setup docker + shell: bash + run: | + brew install kubernetes-cli + brew install docker + brew install colima + colima start + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + - uses: ./ + with: + driver: docker + - 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 + From e095db6e003b7167d3536db03efe76e2db7f88d7 Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Mon, 15 Jul 2024 15:10:53 -0700 Subject: [PATCH 4/4] install kubectl and add mac14 --- .github/workflows/test.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8608fd5a..82fda38d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -142,31 +142,3 @@ jobs: nslookup \ -- \ nslookup kubernetes.default.svc.cluster.local - -test-macos13-docker-driver: - runs-on: macos-14 - steps: - - name: setup docker - shell: bash - run: | - brew install kubernetes-cli - brew install docker - brew install colima - colima start - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: ./ - with: - driver: docker - - 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 -