Is it possible to abort helm install? Is it possible to abort helm install? kubernetes kubernetes

Is it possible to abort helm install?


I think all you can do is abort the command from the command line with control-C or command-C (assuming you ran it manually, if it's from CI then you can presumably abort the job). Then you can do helm list to find the new release and helm delete <release_name> --purge --no-hooks, since it's an install (it would be trickier if it were an upgrade).