Versions Compared

Key

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


Deploy ONAP with RKE

Install docker and RKE


Code Block
titleDownload docker and RKE
collapsetrue
root>curl https://releases.rancher.com/install-docker/18.06.sh | sh
root>docker version
root>wget https://github.com/rancher/rke/releases/download/v0.1.16/rke_linux-amd64
root>mv rke_linux-amd64 rke
root>mv ./rke /usr/local/bin/rke
root>rke --version
root>wget https://github.com/rancher/rke/releases/download/v0.1.16/rke_linux-amd64
root>mv rke_linux-amd64 rke
root>mv ./rke /usr/local/bin/rke
root>rke --version

Install Python packages for Openstack


Code Block
titleInstall Python Openstack packages
collapsetrue
root>apt install python-pip
root>pip install python-openstackclient
root>pip install python-novaclient
root>pip install python-heatclient

Set up ssh key access

Code Block
titlessh key
collapsetrue
root>vi /root/.ssh/onap_key 
root>chmod 0400 /root/.ssh/onap_key 




You can customize your deployment by editing onap-oom.env. For example:

...