You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/pr-minikube.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ env:
7
7
KUBEPLUS_TEST_OUTPUT: yes
8
8
jobs:
9
9
job1:
10
-
runs-on: ubuntu-latest
10
+
runs-on: ubuntu-22.04
11
11
name: Deploy to minikube
12
12
steps:
13
13
- uses: actions/checkout@v2
@@ -92,7 +92,7 @@ jobs:
92
92
93
93
kubectl get pods -A
94
94
95
-
until kubectl get pods -A | grep kubeplus | grep -i Running; do echo "Waiting for KubePlus to start.."; sleep 1; kubeplus_pod=`kubectl get pods | grep kubeplus | awk '{print $1}'`; kubectl get pods $kubeplus_pod; done
95
+
until kubectl get pods -A | grep kubeplus | grep -i Running; do echo "Waiting for KubePlus to start.."; sleep 1; kubeplus_pod=`kubectl get pods | grep kubeplus | awk '{print $1}'`; kubectl get pods $kubeplus_pod; echo "Describing kubeplus pod"; kubectl describe pod $kubeplus_pod; done
96
96
kubeplus_pod=`kubectl get pods | grep kubeplus | awk '{print $1}'`
0 commit comments