RETIRED, Congress Horizon plugin.
64c8fe8487
This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have. |
||
---|---|---|
congress_dashboard | ||
doc | ||
releasenotes | ||
tools | ||
.gitignore | ||
.gitreview | ||
.zuul.yaml | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
LICENSE | ||
lower-constraints.txt | ||
manage.py | ||
MANIFEST.in | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tox.ini |
Congress Dashboard
Horizon Plugin for Congress
Congress Dashboard is an extension for OpenStack Dashboard that provides a UI for Congress. With congress-dashboard, a user is able to easily write the policies and rules for governance of cloud.
- Free software: Apache license
- Source: https://git.openstack.org/cgit/openstack/congress-dashboard
- Bugs: https://bugs.launchpad.net/congress
- Documentation: https://docs.openstack.org/congress-dashboard/latest/
- Release notes: https://docs.openstack.org/releasenotes/congress-dashboard/
Enabling in DevStack
Add this repo as an external repository into your
local.conf
file:
[[local|localrc]]
enable_plugin congress https://github.com/openstack/congress
Manual Installation
The following below instructions assumes that Horizon is already installed and its installation folder is <horizon>. Detailed information on how to install Horizon can be found at https://docs.openstack.org/horizon/latest/contributor/quickstart.html#setup.
The installation folder of Congress Dashboard will be referred to as <congress-dashboard>.
Clone Congress-Dashboard
$ git clone https://github.com/openstack/congress-dashboard.git
$ cd congress-dashboard
Install requirements
$ sudo pip install .
Install Source code
$ sudo python setup.py install
And enable it in Horizon
$ ln -s <congress-dashboard>/congress_dashboard/enabled/_50_policy.py <horizon>/openstack_dashboard/local/enabled
$ ln -s <congress-dashboard>/congress_dashboard/enabled/_60_policies.py <horizon>/openstack_dashboard/local/enabled
$ ln -s <congress-dashboard>/congress_dashboard/enabled/_70_datasources.py <horizon>/openstack_dashboard/local/enabled
$ ln -s <congress-dashboard>/congress_dashboard/enabled/_75_monitoring.py <horizon>/openstack_dashboard/local/enabled
$ ln -s <congress-dashboard>/congress_dashboard/enabled/_80_library.py <horizon>/openstack_dashboard/local/enabled
Restart Apache server
$ sudo service apache2 restart