The UI component for Senlin
Go to file
OpenStack Proposal Bot 4afb7e1ab4 Updated from global requirements
Change-Id: Ie721411a1f61756cb6aec900d2dfc17602c820b5
2018-01-24 01:36:07 +00:00
doc/source Move contents for README.rst 2017-08-24 11:51:12 +09:00
releasenotes Remove setting of version/release from releasenotes 2017-11-16 20:54:40 +01:00
senlin_dashboard Switch to OSC module 2018-01-16 10:11:59 +09:00
tools Add init repo 2015-08-24 23:04:09 +08:00
.eslintrc Enable eslint and karma test(Javascript test) 2016-07-02 02:05:43 +08:00
.gitignore Modify the '.gitignore' file 2017-08-18 17:46:12 +08:00
.gitreview Update .gitreview for new namespace 2015-10-17 22:38:42 +00:00
LICENSE Add init repo 2015-08-24 23:04:09 +08:00
README.rst Move contents for README.rst 2017-08-24 11:51:12 +09:00
_59_toggle_angular_senlin_dashboard.py.example Cleanup unnecessary blank line 2017-02-05 20:08:10 +08:00
babel-django.cfg Enable translation jobs 2016-02-19 11:30:47 -05:00
babel-djangojs.cfg Enable translation jobs 2016-02-19 11:30:47 -05:00
manage.py hacking: Specify white list rules in noqa explicity 2017-06-22 14:22:53 +09:00
package.json Update package.json and karma.conf.js 2016-09-23 23:16:37 +08:00
requirements.txt Updated from global requirements 2017-08-18 04:53:24 +00:00
setup.cfg Optimize the link address 2017-06-22 11:38:46 +07:00
setup.py Updated from global requirements 2017-06-22 21:39:39 +00:00
test-requirements.txt Updated from global requirements 2018-01-24 01:36:07 +00:00
test-shim.js Enable eslint and karma test(Javascript test) 2016-07-02 02:05:43 +08:00
tox.ini Enable some off-by-default checks 2017-06-23 10:59:15 +08:00

README.rst

Team and repository tags

image

Senlin Dashboard

Senlin Management Dashboard

Project Hosting

Mailing list

Use [senlin-dashboard] prefix in subjects with for faster responses

Code Hosting

Code Review

Installation

Before install the Senlin Dashboard, setup the Horizon. To setup the Horizon, see Installation Guide in the Horizon documentation.

  1. Clone the Senlin Dashboard repository:

    $ git clone https://git.openstack.org/openstack/senlin-dashboard
  2. Copy the _50_senlin.py file from senlin_dashboard/enabled/_50_senlin.py file to horizon/openstack_dashboard/local/enabled directory. Example, set as if being executed from the root of the senlin-dashboard repository:

    cp ./senlin_dashboard/enabled/_50_senlin.py ../horizon/openstack_dashboard/local/enabled
  3. Change into the senlin-dashboard repository and package the plugin:

    pip install -r requirements.txt -e .

    This will build and install the senlin-dashboard plugin into the active virtual environment associated with your horizon installation. The plugin is installed in "editable" mode as a link back to your senlin-dashboard plugin directory.

Devstack Installation

  1. Download DevStack:

    $ git clone https://git.openstack.org/openstack-dev/devstack
    $ cd devstack
  2. Add following repo as external repositories into your local.conf file:

    [[local|localrc]]
    #Enable senlin
    enable_plugin senlin https://git.openstack.org/openstack/senlin
    #Enable senlin-dashboard
    enable_plugin senlin-dashboard https://git.openstack.org/openstack/senlin-dashboard

Please see the link https://docs.openstack.org/senlin/latest/install/index.html for more detail about setting Senlin Server.

  1. Run stack.sh:

    $ ./stack.sh

Unit Test

The unit tests can be executed directly from within this Senlin Dashboard plugin project directory by using:

tox

Configuration

Switch to Angularized panels

The panels are ongoing to migrate to AngularJS based. If you would try them, please copy _59_toggle_angular_senlin_dashboard.py.example to horizon/openstack_dashboard/local_settings.d/_59_toggle_angular_senlin_dashboard.py and restart Horizon.

For more information on configuration, see Configuration Guide in the Horizon documentation.