Mistral Horizon plugin.
Go to file
Renat Akhmerov 9aa1019c83 Removing redundant header from setup.py
Change-Id: Ie927becef737feeb41f9975687873ebb2d0f7c3b
2015-06-26 15:32:20 +06:00
doc/source Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
mistraldashboard Merge "Making style changes and adding AUTHORS file" 2014-09-30 07:25:22 +00:00
.gitignore Fix missing static folder 2014-09-17 11:08:55 +07:00
.gitreview Update .gitreview file for project rename 2015-06-12 23:12:30 +00:00
AUTHORS Updating AUTHORS file 2014-10-29 13:58:37 +03:00
LICENSE Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
README.rst Fixing readme file 2014-07-03 19:21:23 +07:00
_50_mistral.py.example Horizon plugin system compatibility 2014-06-23 14:54:57 +07:00
manage.py Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
requirements.txt Fixing dependency to Mistral client 2014-07-03 16:31:13 +07:00
setup.cfg Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
setup.py Removing redundant header from setup.py 2015-06-26 15:32:20 +06:00
test-requirements.txt Update requirements according to global requirements (master) 2014-09-25 13:37:30 +04:00
tox.ini Enable hacking check H306 2014-07-21 18:02:43 +02:00

README.rst

Mistral Dashboard

Horizon plugin for Mistral.

Setup Instructions

This instruction assumes that Horizon is already installed and it's installation folder is <horizon>. Detailed information on how to install Horizon can be found at http://docs.openstack.org/developer/horizon/quickstart.html#setup.

The installation folder of Mistral Dashboard will be referred to as <mistral-dashboard>.

The following should get you started:

$ sudo pip install -e <mistral-dashboard>
$ ln -s <mistral-dashboard>/_50_mistral.py.example \
  <horizon>/openstack_dashboard/local/enabled/_50_mistral.py

Since Mistral only supports Identity v3, you must ensure that the dashboard points the proper OPENSTACK_KEYSTONE_URL in <horizon>/openstack_dashboard/local/local_settings.py file:

OPENSTACK_API_VERSIONS = {
    "identity": 3,
}

OPENSTACK_KEYSTONE_URL = "http://%s:5000/v3" % OPENSTACK_HOST

Also, make sure you have changed OPENSTACK_HOST to point to your Keystone server and check all endpoints are accessible. You may want to change OPENSTACK_ENDPOINT_TYPE to "publicURL" if some of them are not.

Register Mistral service and Mistral endpoints on Keystone (required if Mistral and Horizon dashboard run on a different boxes):

$ MISTRAL_URL="http://[host]:[port]/v1"
$ keystone service-create --name mistral --type workflow
$ keystone endpoint-create --service_id mistral --publicurl $MISTRAL_URL \
  --adminurl $MISTRAL_URL --internalurl $MISTRAL_URL

When you're ready, you would need to either restart your apache:

$ sudo service apache2 restart

or run the development server (in case you have decided to use local horizon):

$ cd ../horizon/
$ tox -evenv -- python manage.py runserver