Murano DevStack installation
We will now see how to install a development setup of Murano using DevStack.
- Create a root directory for DevStack if needed:
$ sudo mkdir -p /opt/stack$ sudo chown $USER /opt/stack
- Clone DevStack repository:
$ git clone https://git.openstack.org/openstack-dev/devstack
/opt/stack/devstack
- Now create a minimal
local.conf
for running the DevStack setup:
$ cat > /opt/stack/devstack/local.conf << END[[local|localrc]]HOST_IP=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')DATABASE_PASSWORD=passwordRABBIT_PASSWORD=passwordSERVICE_TOKEN=passwordSERVICE_PASSWORD=passwordADMIN_PASSWORD=passwordenable_plugin murano git://git.openstack.org/openstack/muranoEND
- Now run DevStack:
$ cd /opt/stack/devstack$ ./stack.sh
Murano should be installed now. To verify the installation, run the following:
$ sudo systemctl status devstack@murano-* devstack@murano-engine.service - Devstack devstack@murano- engine.service Loaded: loaded...