Skip to content

Commit

Permalink
troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
sl1pm4t committed Dec 7, 2023
1 parent 9da367a commit f86ec17
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
stern: latest

- name: Install curl
run: sudo apt-get install -y curl
run: sudo apt-get install -y curl net-tools

- name: setup-kind
uses: helm/[email protected]
Expand Down Expand Up @@ -83,7 +83,10 @@ jobs:
- name: test
run: |
kubectl get pods
kubectl get services
sleep 5
netstat -anp | grep LISTEN
export NODE_IP=$(kubectl get nodes -o jsonpath="{.items[0].status.addresses[0].address}")
echo $NODE_IP
curl -Lsf "http://${NODE_IP}:30000/login/my-cluster"
curl -L -v "http://${NODE_IP}:30000/login/my-cluster"
curl -Lsf "http://${NODE_IP}:30000/login/my-cluster" | grep "Log in to Your Account"

0 comments on commit f86ec17

Please sign in to comment.