949522f875
Added attach/detach configuration group actions to the instances table. Added tab to launch dialog to select a configuration group to associate with the instance. Added "Configuration Groups" panel which displays existing configuration groups and allows the user to create new or delete existing configuration groups. Added a details screen with three tabs (Values, Instances, Details). * The Values tab displays the list of all name/value parameters associated with a configuration group along with actions to add new parameters, delete existing parameters, discard changes and apply changes. Values can be modified in the table directly. * The Instances tab displays the instances that the configuration group is associated with along with actions to detach the configuration group from the instance. * The Details tab displays additional information on the configuration group. Added a configuration defaults tab to the database instance details. Use a cache for storing changes to the configuration group. Change-Id: Idbd6775342968c1659ca1e9b02dcb697750530b6 Co-Authored-By: Andrew Bramley <andrew@tesora.com> Co-Authored-By: Duk Loi <duk@tesora.com> Implements: blueprint trove-configuration-group-support |
||
---|---|---|
devstack | ||
releasenotes | ||
tools | ||
trove_dashboard | ||
.gitignore | ||
.gitreview | ||
babel-django.cfg | ||
babel-djangojs.cfg | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
LICENSE | ||
manage.py | ||
MANIFEST.in | ||
README.rst | ||
requirements.txt | ||
run_tests.sh | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tox.ini |
OpenStack Dashboard plugin for Trove project
How to use with Horizon on server:
Use pip to install the package on the server running Horizon. Then either copy or link the files in trove_dashboard/enabled to openstack_dashboard/local/enabled. This step will cause the Horizon service to pick up the trove plugin when it starts.
How to use with devstack:
Add the following to your devstack local.conf
file:
enable_plugin trove-dashboard git://git.openstack.org/openstack/trove-dashboard
To run unit tests:
./run_tests.sh
Editing Code
Apache
Make a change to trove-dashboard then goto to the horizon directory and compress the code with django and then restart apache.:
# rsync code to /opt/stack/trove-dashboard
# copy or link files from trove-dashboard/enabled/* to horizon/openstack_dashboard/local/enabled/
cd /opt/stack/horizon
python manage.py compress
python manage.py collectstatic --noinput
sudo service apache2 restart
Django
You can also speed up development time using the django test server instead of apache.:
/opt/stack/horizon/run_tests.sh --runserver
If you set COMPRESS_ENABLED and COMPRESS_OFFLINE to False in local_settings.py that allows you to bypass the compress and collectstatic as well.
NOTE:
As of the Mitaka release, the dashboard for trove is now maintained outside of the Horizon codebase, in this repository.
Links:
Trove project: https://git.openstack.org/openstack/trove
Trove at wiki.openstack.org: https://wiki.openstack.org/wiki/Trove
Launchpad project: https://launchpad.net/trove