-
Notifications
You must be signed in to change notification settings - Fork 2
Deploy an AIO environment
Dave Wilde edited this page Sep 23, 2019
·
1 revision
An All-In-One (AIO) RPC environment enables you to quickly test and preview OpenStack functionality. When you install an AIO environment, the bind server that DNS uses as a backend is configured on the host. To set up an AIO RPC environment, complete the following steps:
-
Update the host to the latest packages:
apt-get update && apt-get -y dist-upgrade && reboot
-
Add the canonical repository to your system, clone the required version of OpenStack (Newton in this example), and deploy RPC OpenStack as an AIO environment by running the following script:
sudo add-apt-repository ppa:canonical-kernel-team/ppa cd /opt git clone --recursive -b newton https://github.com/rcbops/rpc-openstack.git cd rpc-openstack/ export DEPLOY_AIO="yes" ./scripts/deploy.sh
-
Clone the RPC Designate repository and install designate by running the following script:
cd /opt git clone https://github.com/rcbops/rpc-designate.git cd rpc-designate ./scripts/deploy.sh