We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c325b commit ef4ff15Copy full SHA for ef4ff15
tests/e2e/local/minikube/setup_minikube_env.sh
@@ -11,9 +11,10 @@ if [ $? -ne 0 ]; then
11
exit 1
12
fi
13
14
+echo "Port Forwarding is Setup"
15
16
# Check if minikube docker environment is setup.
-docker info | grep "localhost:5000"
17
+docker info | grep "localhost:5000" > /dev/null
18
if [ $? -ne 0 ]; then
19
echo "Minikube docker environment not setup. Trying to set it up."
20
eval $(minikube docker-env)
@@ -22,3 +23,4 @@ if [ $? -ne 0 ]; then
22
23
24
25
26
+echo "Minikube docker environment is setup for this shell"
0 commit comments