Mistral Horizon plugin.
Go to file
Kirill Izotov 92209c349f Readme updates
Change-Id: I356c8cdc8ef005ccf907b39d7cf480cf1f000127
2014-06-23 23:40:52 +07:00
doc/source Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
mistraldashboard Make use of /executions endpoint API 2014-06-23 16:26:53 +07:00
.gitignore Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
.gitreview Add .gitreview 2014-04-30 12:28:49 +04:00
LICENSE Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
README.rst Readme updates 2014-06-23 23:40:52 +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 Horizon plugin system compatibility 2014-06-23 14:54:57 +07:00
setup.cfg Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
setup.py Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
test-requirements.txt Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
tox.ini Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00

README.rst

Mistral Dashboard

Horizon plugin for Mistral.

Setup Instructions

The following should get you started:

$ sudo pip install -e /opt/stack/mistral-dashboard
$ ln -s /opt/stack/mistral-dashboard/_50_mistral.py.example \
  /opt/stack/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 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