Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Helm init and configuration of Tiller added

...

  1. Clone ONAP Helm charts for specific release including submodules

    git clone --branch frankfurtelalto --recurse-submodules "https://gerrit.onap.org/r/oom"

  2. Change to kubernetes dir

    cd oom/kubernetes

  3. Start Helm service and initialize local Helm repository

    make repo
    # This will do same as:

    helm serve &
    helm repo add local httpadd local http://127.0.0.1:8879

  4. Package ONAP Helm charts

    make

  5. Initialize Helm (install Tiller POD into Kubernetes)

    helm init

    and configure Tiller

    Code Block
    languagebash
    titleStart minikube
    kubectl -n kube-system create serviceaccount tiller
    
    kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
    
    helm init --service-account tiller
    
    kubectl -n kube-system rollout status deploy/tiller-deploy