diff options
Diffstat (limited to '.github/workflows/main-branch.yml')
| -rw-r--r-- | .github/workflows/main-branch.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/main-branch.yml b/.github/workflows/main-branch.yml index 4429e38..e6eb096 100644 --- a/.github/workflows/main-branch.yml +++ b/.github/workflows/main-branch.yml @@ -56,20 +56,21 @@ jobs: run: | kubectl apply -f kubernetes/ kubectl rollout status deployment/pico-web-server-deployment - - name: Minikube use + - name: Using cluster run: | + kubectl get all minikube service pico-web-server-service --url echo -ne 'demo@/' | socat STDIO TCP:$(minikube service pico-web-server-service --url | cut -d/ -f3-) - - name: Checkout current run: git checkout main - - name: Minikube update + - name: Using cluster run: | kubectl apply -f kubernetes/ kubectl rollout status deployment/pico-web-server-deployment - name: Minikube use run: | + kubectl get all minikube service pico-web-server-service --url echo -ne 'demo@/' | socat STDIO TCP:$(minikube service pico-web-server-service --url | cut -d/ -f3-) |
