d364ef2639
For two reasons: * The configuration file can be generated by using oslo-config-generator CLI command provided by oslo.config module, which is generally adopted by OpenStack projects. * Reduce maintenance effort for each configuration item change. Change-Id: If2f2559d669275b5fd252790657521049296c156 |
||
---|---|---|
.. | ||
extras.d | ||
lib | ||
README.rst |
Follow Devstack documentation to setup a host for Devstack. Then clone Devstack source code:
$ git clone https://github.com/openstack-dev/devstack
Clone Mistral source code:
$ git clone https://github.com/openstack/mistral
Copy Mistral integration scripts to Devstack:
$ cp mistral/contrib/devstack/lib/mistral ${DEVSTACK_DIR}/lib $ cp mistral/contrib/devstack/extras.d/70-mistral.sh ${DEVSTACK_DIR}/extras.d/
Create/modify a
localrc
file as input to devstack:$ cd devstack $ touch localrc
The Mistral service is not enabled by default, so it must be enabled in
localrc
before runningstack.sh
. This example oflocalrc
file shows all of the settings required for Mistral:# Enable Mistral enable_service mistral
Deploy your OpenStack Cloud with Mistral:
$ ./stack.sh
Note:
- All needed keystone endpoints for Mistral will be automatically created during installation.
- Python-mistralclient will be also cloned and installed automatically.