Deploy ONAP with RKE
Install docker and RKE
Code Block |
---|
title | Download docker and RKE |
---|
collapse | true |
---|
|
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 |
---|
title | Install Python Openstack packages |
---|
collapse | true |
---|
|
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 |
---|
|
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:
...