File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ jobs:
109109 docker images
110110 docker push ${{env.imagename}}
111111 echo 'Curling host.minikube.internal test app images from minikube'
112- minikube ssh "curl http://host.minikube.internal:5001/v2/testapp/tags/list\ "
112+ minikube ssh "curl http://host.minikube.internal:5001/v2/testapp/tags/list"
113113 # Deploys application based on manifest files from previous step
114114 - name : Deploy application
115115@@ -134,11 +134,11 @@ jobs:
134134 run : |
135135 kubectl get svc
136136 echo 'Starting minikube tunnel'
137- minikube tunnel > /dev/null 2>&1 & tunnelPID=\ $!
137+ minikube tunnel > /dev/null 2>&1 & tunnelPID=$!
138138 sleep 120
139139 kubectl get svc
140140 SERVICEIP=$(kubectl get svc -o jsonpath={'.items[1].status.loadBalancer.ingress[0].ip'})
141- echo "SERVICEIP: \ $SERVICEIP"
141+ echo "SERVICEIP: $SERVICEIP"
142142 echo 'Curling service IP'
143143 curl -m 3 $SERVICEIP:${{env.serviceport}}
144144 kill $tunnelPID
You can’t perform that action at this time.
0 commit comments