From 2c45fef0c82b9d3650e4a48de5af437b5edca6ca Mon Sep 17 00:00:00 2001 From: Cristhian Garcia Date: Thu, 12 Sep 2024 15:38:08 -0500 Subject: [PATCH] temp: integration testing --- .github/workflows/integration-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index a95288d..6c82424 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -11,8 +11,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Create k8s Kind Cluster - uses: helm/kind-action@v1.10.0 + - name: start minikube + id: minikube + uses: medyagh/setup-minikube@latest - name: Setup namespace run: | @@ -35,6 +36,7 @@ jobs: - name: Setup domain run: | + minikube service harmony-ingress-nginx-controller -n harmony --url export CLUSTER_HTTP_URL=$(minikube service harmony-ingress-nginx-controller -n harmony --url | head -n 1) - echo CLUSTER_HTTP_URL + echo $CLUSTER_HTTP_URL curl $CLUSTER_HTTP_URL/cluster-echo-test -H "host: harmony.test"