diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 58c5753..860e1cd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,7 +40,8 @@ jobs: - name: Download k3d run: wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash - name: Create k3d cluster - run: k3d cluster create --agents 2 -p "80:80@loadbalancer" --k3s-arg "--disable=traefik@server:0" --registry-create reciperegistry:51351 + # Map localhost port 80 on the external load balancer, and disable traefik and the internal load balancer. + run: k3d cluster create --agents 2 -p "80:80@loadbalancer" --k3s-arg "--disable=traefik@server:*" --k3s-arg "--disable=servicelb@server:*" --registry-create reciperegistry:51351 - name: Install Dapr run: | helm repo add dapr https://dapr.github.io/helm-charts/