We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca560ae commit 0f12c7cCopy full SHA for 0f12c7c
deploy/minikube-development.sh
@@ -6,13 +6,13 @@ timeout=600 #10 minutes in seconds
6
endTime=$(( $(date +%s) + timeout ))
7
8
echo -e "\033[0;32mWaiting for Tekton Pipeines to start...\033[0m"
9
-while ! oc get pods -n tekton-pipelines | grep tekton-pipelines-controller | grep "1/1"; do
+while ! kubectl get pods -n tekton-pipelines | grep tekton-pipelines-controller | grep "1/1"; do
10
sleep 1
11
if [ $(date +%s) -gt $endTime ]; then
12
exit 1
13
fi
14
done
15
-while ! oc get pods -n tekton-pipelines | grep tekton-pipelines-webhook | grep "1/1"; do
+while ! kubectl get pods -n tekton-pipelines | grep tekton-pipelines-webhook | grep "1/1"; do
16
17
18
0 commit comments