diff options
| author | Syndamia <kamen@syndamia.com> | 2024-08-12 19:31:10 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-08-12 19:31:10 +0300 |
| commit | 254d10e7eace94109103735cbc2f741fd22e1671 (patch) | |
| tree | 97f04fb337152398cccfac39256f956fb146f4b2 /.github | |
| parent | a08a22cc018d530518659d8d995669ef773a811e (diff) | |
| download | pico-web-254d10e7eace94109103735cbc2f741fd22e1671.tar pico-web-254d10e7eace94109103735cbc2f741fd22e1671.tar.gz pico-web-254d10e7eace94109103735cbc2f741fd22e1671.zip | |
feat(main-branch): Added kubectl info to using step
Diffstat (limited to '.github')
| -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-) |
