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 4380a43 commit c24e0f6Copy full SHA for c24e0f6
jmeter_cluster_create.sh
@@ -24,7 +24,11 @@ kubectl get namespaces | grep -v NAME | awk '{print $1}'
24
echo
25
26
tenant="$1"
27
-[ -n "$tenant" ] || read 'Enter the name of the new tenant unique name, this will be used to create the namespace' tenant
+if [ -z "$tenant" ]
28
+then
29
+ echo "Enter the name of the new tenant unique name, this will be used to create the namespace"
30
+ read tenant
31
+fi
32
33
34
0 commit comments