From 6467e4917e3720d01bb4068b24619a347dec78db Mon Sep 17 00:00:00 2001 From: Zack Kayyali Date: Tue, 24 Sep 2024 13:10:29 -0400 Subject: [PATCH] Fix CI ingress was renamed to `{{ resource_name }}-ui-ingress`. Adjust CI accordingly --- .github/workflows/ci.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d2cb58..95e4c72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: - name: Test EDA API via k8s ingress run: | - IP=$(kubectl get ingress -n eda eda-demo-ingress -o json | jq .status.loadBalancer.ingress[0].ip -r) + IP=$(kubectl get ingress -n eda eda-demo-ui-ingress -o json | jq .status.loadBalancer.ingress[0].ip -r) curl -s http://${IP}:80/api/eda/v1/status/ if: ${{ matrix.SCENARIO == 'ingress' }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8e29fe0..7828488 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -78,7 +78,7 @@ jobs: - name: Test EDA API via k8s ingress run: | - IP=$(kubectl get ingress -n eda eda-demo-ingress -o json | jq .status.loadBalancer.ingress[0].ip -r) + IP=$(kubectl get ingress -n eda eda-demo-ui-ingress -o json | jq .status.loadBalancer.ingress[0].ip -r) curl -s http://${IP}:80/api/eda/v1/status/ if: ${{ matrix.SCENARIO == 'ingress' }}