Skip to content

Commit

Permalink
Merge pull request #496 from medyagh/podmantest
Browse files Browse the repository at this point in the history
add podman test
  • Loading branch information
medyagh authored Jul 15, 2024
2 parents 35a1ecf + 37e83d9 commit 0ae5275
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,39 @@ jobs:
nslookup \
-- \
nslookup kubernetes.default.svc.cluster.local
test-podman-driver:
runs-on: ubuntu-24.04
steps:
- name: Install Podman
shell: bash
run: |
lsb_release -a
sudo apt update
sudo apt install -y podman
echo "--------------------------"
podman version || true
echo "--------------------------"
podman info || true
echo "--------------------------"
podman system df || true
echo "--------------------------"
podman system info --format='{{json .}}'|| true
echo "--------------------------"
podman ps || true
echo "--------------------------"
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: ./
with:
driver: podman
- 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

0 comments on commit 0ae5275

Please sign in to comment.