helm init has been removed in version 3

12/10/2019

The command helm init does not work any longer as of version 3. Running helm --help lists all available commands, amongst which init is no longer present.

Why is that?

-- aboger
kubernetes
kubernetes-helm

1 Answer

12/10/2019

According to the official documentation, the helm init command has been removed without replacement:

The helm init command has been removed. It performed two primary functions. First, it installed Tiller. This is no longer needed. Second, it setup directories and repositories where Helm configuration lived. This is now automated. If the directory is not present it will be created.


There has been another notable change, which might trouble you next:

The stable repository is no longer added by default. This repository will be deprecated during the life of Helm v3 and we are now moving to a distributed model of repositories that can be searched by the Helm Hub.

However, according to the official quickstart guide, this can be done manually if desired:

$ helm repo add stable https://kubernetes-charts.storage.googleapis.com/
$ helm repo update  

⎈ Happy Helming!⎈

-- aboger
Source: StackOverflow