in subcommands/uninstall.py [0:0]
def _delete_namespace(namespace):
if _get_yn_response(
f"This will remove the namespace {namespace}. Continue (y/n)? "
):
command = ["kubectl", "delete", "ns", namespace]
subprocess.check_output(command)