Forrest logo
back to the helm tool

helm:tldr:10d31

helm: Delete a helm repository.
$ helm repo remove ${repository_name}
try on your machine

This command is used to remove a Helm chart repository from the local Helm client configuration.

Here's what each part of the command does:

  • helm: This is the command-line tool for managing Helm charts.
  • repo: This is a subcommand used for interacting with Helm repositories.
  • remove: This is a specific action of the repo subcommand that is used to remove a repository.
  • ${repository_name}: This is a placeholder that should be replaced with the actual name of the repository you want to remove.

When you run this command with the appropriate repository name, Helm will remove the specified repository from its list of available repositories in the local configuration. This means that Helm will no longer consider the repository when searching for charts to install or update.

Note that this command only removes the repository configuration from the local Helm client and does not delete the actual repository or any charts stored in it.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the helm tool