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.
2 parents a17c1d6 + 17058db commit b47aa02Copy full SHA for b47aa02
1_lieutenant_on_minikube.sh
@@ -12,6 +12,12 @@ check_variable "GITLAB_USERNAME" "$GITLAB_USERNAME"
12
LIEUTENANT_OPERATOR_VERSION=v1.5.0
13
LIEUTENANT_API_VERSION=v0.11.0
14
15
+# ngrok must not be running
16
+if pidof ngrok; then
17
+ echo "ERROR: ngrok is already running. Please stop it first."
18
+ exit 1
19
+fi
20
+
21
# Minikube must be running
22
minikube start --disk-size 60g --cpus 4
23
check_minikube
0 commit comments