Mistral Horizon plugin.
Go to file
Kirill Izotov 744309b2e1 Horizon plugin system compatibility
- added enabled script
- removed horizon from requirements
- updated README
- refactor folder structure

Change-Id: If3fb4eddec26c5817cb0971eb7c4fe2ebb5641f3
Implements: blueprint mistral-ui
2014-06-23 14:54:57 +07:00
doc/source Move dashboard from python-mistralclient 2014-06-17 13:53:16 +07:00
mistraldashboard Horizon plugin system compatibility 2014-06-23 14:54:57 +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 Horizon plugin system compatibility 2014-06-23 14:54:57 +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 may need to edit the local_settings.py file to point to proper OPENSTACK_KEYSTONE_URL:

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.

Depending on your setup, 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, 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