Mistral Horizon plugin.
Go to file
Kirill Izotov 143e486bcc Color statuses for both executions and tasks
Change-Id: I7befbaf7f297873361f4e4de9416f84043b83196
Implements: blueprint mistral-ui
2014-06-18 15:25:33 +07:00
doc/source Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
mistraldashboard Color statuses for both executions and tasks 2014-06-18 15:25:33 +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 Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
manage.py Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
requirements.txt Move dashboard from python-mistralclient 2014-06-17 13:53:16 +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:

$ git clone https://github.com/stackforge/mistral-dashboard.git
$ cd mistral-dashboard
$ cp mistraldashboard/local/local_settings.py.example \
  mistraldashboard/local/local_settings.py

Edit the local_settings.py file as needed. Make sure you have changed OPENSTACK_HOST to point to your keystone server and also check all endpoints are accessible. You may want to change OPENSTACK_ENDPOINT_TYPE to "publicURL" if some of your endpoints are inaccessible.

You may also need to add a service and endpoints to keystone:

$ 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 to run the development server:

$ tox -evenv -- python manage.py runserver