Skip to content

Commit

Permalink
feat: add e2e setup workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-jhartmann committed Jun 27, 2024
1 parent 5b4868d commit 9a8f478
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
- name: Install NGINX Ingress Controller
- name: Describe Ingress Controller
run: |
kubectl describe svc/ingress-nginx-controller -n ingress-nginx
Expand All @@ -45,7 +45,12 @@ jobs:
kubectl wait --namespace ingress-nginx \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=600s
--timeout=200s
- name: Get Ingress Controller Logs
if: always()
run: |
kubectl logs svc/ingress-nginx-controller -n ingress-nginx
- name: Get Ingress Controller IP
id: get_ingress_ip
Expand Down

0 comments on commit 9a8f478

Please sign in to comment.