Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu committed Oct 26, 2023
1 parent b7da4a4 commit 21abeb6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,11 @@ jobs:
run: wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
- name: Create k3d cluster
if: steps.gen-id.outputs.RUN_TEST == 'true' && matrix.credential != 'aws'
run: k3d cluster create --agents 2 -p "80:80@loadbalancer" --k3s-arg "--disable=traefik@server:0"
run: |
echo "testing local registry ....................."
k3d cluster create --agents 2 -p "80:80@loadbalancer" --k3s-arg "--disable=traefik@server:0" --registry-create mycluster-registry
ANSWER="$(docker ps -f name=mycluster-registry --format \" { {.Ports}}\")"
echo "answer=$ANSWER" >> $GITHUB_OUTPUT
- name: Install Dapr
if: steps.gen-id.outputs.RUN_TEST == 'true' && steps.gen-id.outputs.ENABLE_DAPR == 'true'
run: |
Expand Down

0 comments on commit 21abeb6

Please sign in to comment.