File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ jobs:
30
30
run : |
31
31
eval $(minikube docker-env)
32
32
./build-an-deploy.sh
33
- while [[ kubectl get pods -l app=wrongsecrets-balancer -o 'jsonpath={..status.conditions[?(@.type=="Ready")].status}' != "True" ]]; do echo "waiting for wrongsecrets balancer" && sleep 2; done
33
+ while [[ $( kubectl get pods -l app=wrongsecrets-balancer -o 'jsonpath={..status.conditions[?(@.type=="Ready")].status}') != "True" ]]; do echo "waiting for wrongsecrets- balancer" && sleep 2; done
34
34
kubectl logs deployments/wrongsecrets-balancer -f >> pod.log &
35
35
echo "port forwarding"
36
36
kubectl port-forward service/wrongsecrets-balancer 3000:3000 &
37
37
echo "Awaiting the first forward to be ready"
38
38
sleep 10
39
- curl http://localhost:3000
39
+ curl http://localhost:3000/balancer/
40
40
echo "logs from pod to make sure:"
41
41
cat pod.log
You can’t perform that action at this time.
0 commit comments