Wednesday, February 22, 2023

The command to remove all Helm repositories from your local Helm client

 To remove all repos from the helm repo list on your machine.



helm repo list | awk '{print $1}' | xargs -L1 helm repo remove



The above command fails in powershell because of line ending difference.
Can run from git bash on windows.



No comments:

Post a Comment