Integrate murano with DevStack¶
You can install murano with DevStack. The murano/devstack directory in the murano repository contains the files necessary to integrate murano with DevStack.
To install the development version of an OpenStack environment with murano, proceed with the following steps:
Download DevStack:
git clone https://opendev.org/openstack/devstack cd devstack
Edit
local.conf
to enable murano DevStack plug-in:> cat local.conf [[local|localrc]] enable_plugin murano https://opendev.org/openstack/murano
If you want to enable Murano Cloud Foundry Broker API service, add the following line to
local.conf
:enable_service murano-cfapi
If you want to use Glare Artifact Repository as a strorage for packages, add the following line to
local.conf
:enable_service g-glare
For more information on how to use Glare Artifact Repository, see Using Glare as a storage for packages.
(Optional) To import murano packages when DevStack is up, define an ordered list of FQDN packages in
local.conf
. Verify that you list all package dependencies. These packages will be imported from themurano-apps
git repository by default. For example:MURANO_APPS=com.example.apache.Tomcat,com.example.Guacamole
To configure the git repository that will be used as the source for the imported packages, configure the
MURANO_APPS_REPO
andMURANO_APPS_BRANCH
variables.Run DevStack:
./stack.sh
Result: Murano has installed with DevStack.