.gitea/workflows/e2e.yml aktualisiert

This commit is contained in:
ChristopherHX
2026-03-18 22:08:30 +00:00
parent e2bc1191d7
commit 9a3b8afa55

View File

@ -18,6 +18,12 @@ jobs:
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
install kubectl /usr/local/bin/ install kubectl /usr/local/bin/
- name: Debug All
run: |
docker ps -a
docker network ls
docker volume ls
- name: Create kind cluster - name: Create kind cluster
run: | run: |
kind create cluster --name test-cluster-2 kind create cluster --name test-cluster-2
@ -56,3 +62,9 @@ jobs:
kubectl get nodes kubectl get nodes
kubectl get pods -A kubectl get pods -A
- name: Debug All
if: always()
run: |
docker ps -a
docker network ls
docker volume ls