Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
kubectl -n kube-system create serviceaccount tiller
kubectl create clusterrolebinding tiller --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
helm init --stable-repo-url https://charts.helm.sh/stable --service-account tiller
kubectl -n kube-system  rollout status deploy/tiller-deploy

helm repo remove stable

Perform this on the other onap-control nodes:

Code Block
languagebash
firstline1
helm init --stable-repo-url https://charts.helm.sh/stable --client-only

helm repo remove stable



Setting up the NFS share for multinode kubernetes cluster:

...

Code Block
ubuntu@onap-control-1:~$ helm repo list
NAME  	URL                                             
stable	https://kubernetes-charts.storage.googleapis.com
local 	http://127.0.0.1:8879/charts                           
ubuntu@onap-control-1:~$

Make onap helm charts available in local helm repository

...