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
read -r answer
case "$answer" in
y|Y|yes|Yes)
echo "Deleting namespace \`$namespace\`"
;;
n|N|no|No|"")
echo Abort >&2
exit 1
;;
*)
echo "Unrecognized answer \`$answer\`: it should be either yes or no.\nAbort" >&2