Versions Compared

Key

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

...

Code Block
languagebash
titleInstall and Start MiniKube
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
minikube start

Install Kubectl and

...

Helm and Helm Repo 

To setup kubectl and helm for ONAP locally  follow steps as outlined in the deploy section on - https://docs.onap.org/projects/onap-oom/en/latest/oom_user_guide.html#deploy

Please note the following amendments to the above instructions:

  • Follow https://v1-18.docs.kubernetes.io/docs/tasks/tools/install-kubectl/ to install the latest version of kubectl instead of the very old 1.15.11.
  • No Need to 'Paste kubectl config rom Rancher' (not sure why that is even in those instructions)
  • Skip 'helm install ons/onap' as the document mentions it is not available anymore
  • Install helm push plugin (before building the Helm repository)

    Code Block
    languagebash
    titleInstall Helm Push Plugin
    helm plugin install https://github.com/chartmuseum/helm-push.git


...