Create group stack and user stack

# groupadd stack
# useradd -g stack -s /bin/bash -m stack

Allow the user to become root without password

# echo 'stack ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/stack
# chmod 0440 /etc/sudoers.d/stack

Become user stack and clone Murano code to the /opt directory

# su stack
$ cd /opt
$ git clone git://github.com/...

Next, clone devstack to stack home directory

$ cd
$ git clone git://github.com/openstack-dev/devstack.git

Create a link to devstack-scripts folder

$ cd
$ ln -s devstack-scripts /opt/murano/Deployment/devstack-scripts

Edit localrc file

$ cd ~/devstack-scripts
$ vim localrc

Correct the following variables as shown below

...
MYSQL_DB_TMPFS=true
...
NOVA_CACHE_TMPFS=false
...
GLANCE_IMAGE_LIST="/path/to/the/image.qcow2"
COMPUTE_NODE_LIST=""
...

You may set the GLANCE_IMAGE_LIST to an empty string (GLANCE_IMAGE_LIST="") and import the image name manually later.

Edit ~/devstack-scripts/standalone/devstack.localrc file. This file will replace the ~/devstack/localrc file so make all the necessary changes here.

$ cd ~/devstack-scripts/standalone
$ vim devstack.localrc

You might need to change the following variables:

...
HOST_IP=
...
FLAT_INTERFACE=
...