The UI component for Senlin
Go to file
OpenStack Proposal Bot b9648e6ce2 Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: Id96f9e5f90b22db8b013a200afb37b3d37dec924
2024-03-07 04:06:30 +00:00
.stestr Remove mox3 dependencies 2018-08-22 10:39:50 +09:00
doc remove unicode from code 2022-09-12 15:04:38 +08:00
releasenotes Imported Translations from Zanata 2024-03-07 04:06:30 +00:00
senlin_dashboard Adding CACERT and NO_VERIFY option on senlinclient 2023-12-28 13:53:04 +07:00
tools Fix tox jobs and remove tox_helper.sh 2018-05-15 18:29:39 +09:00
.eslintrc Enable eslint and karma test(Javascript test) 2016-07-02 02:05:43 +08:00
.gitignore Follow the new PTI for document build 2018-05-15 18:25:35 +09:00
.gitreview OpenDev Migration Patch 2019-04-19 19:35:47 +00:00
.zuul.yaml Switch to 2023.1 Python3 unit tests and generic template name 2022-09-15 15:59:06 +00:00
LICENSE Add init repo 2015-08-24 23:04:09 +08:00
README.rst Replace git.openstack.org URLs with opendev.org URLs 2019-05-05 13:19:46 +08:00
_59_toggle_angular_senlin_dashboard.py.example Cleanup unnecessary blank line 2017-02-05 20:08:10 +08:00
babel-django.cfg translation: drop babel extractor definitions 2019-12-28 14:35:47 +00:00
babel-djangojs.cfg translation: drop babel extractor definitions 2019-12-28 14:35:47 +00:00
bindep.txt [goal] Migrate testing to ubuntu focal 2020-09-10 14:15:26 +00:00
manage.py hacking: Specify white list rules in noqa explicity 2017-06-22 14:22:53 +09:00
package.json Migrate to AngularJS v1.8.2 2022-08-08 19:51:14 +00:00
requirements.txt Drop Django 1.11 support 2020-01-02 20:32:20 +00:00
setup.cfg setup.cfg: Replace dashes with underscores 2022-09-12 15:10:11 +08:00
setup.py Updated from global requirements 2017-06-22 21:39:39 +00:00
test-requirements.txt Fix hacking min version to 3.0.1 2020-05-12 21:08:18 -05:00
test-shim.js Enable eslint and karma test(Javascript test) 2016-07-02 02:05:43 +08:00
tox.ini Merge "Address RemovedInDjango40Warning" 2023-02-13 20:09:54 +00: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://opendev.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://opendev.org/openstack/devstack
    $ cd devstack
  2. Add following repo as external repositories into your local.conf file:

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

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

  3. 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.