I am trying to install Kubernetes Helm and Tiller for my Kubernetes cluster. Currently I installed Helm client by following command,
sudo snap install helm --classic
And now I am trying to run 'helm init' command to install Tiller in my cluster. I have my configuration file in .kube/config path. And I am running the helm init command. But When I am running this, I am getting the following error:
Updated Error
$HELM_HOME has been configured at /home/docker/.helm.
Error: error installing: deployments.extensions is forbidden: User "system:node:mildevkub020" cannot create resource "deployments" in API group "extensions" in the namespace "kube-system"
Do I need to change any cluster information in kubelet.conf? How I can resolve this error?
helm
cli in your local machine or the kubernetes host? – Esteban Garcia~/.kube/kubelet.conf
most likely is your kubectl configuration that file should be~/.kube/config
– Esteban Garcia