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
echo -n "Force deleting a namespace can leave some resources associated to the namespace alive.\nAre you sure you want to delete the namespace \`$namespace\`? [y/N] ">&2
6
+
7
+
read -r answer
8
+
9
+
case"$answer"in
10
+
y|Y|yes|Yes)
11
+
echo"Deleting namespace \`$namespace\`"
12
+
;;
13
+
n|N|no|No|"")
14
+
echo Abort >&2
15
+
exit 1
16
+
;;
17
+
*)
18
+
echo"Unrecognized answer \`$answer\`: it should be either yes or no.\nAbort">&2
0 commit comments