
meta:version: 2.0.0 meta:series: mitaka meta:release-type: release meta:announce: openstack-announce@lists.openstack.org meta:pypi: no meta:first: yes -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQEcBAABAgAGBQJXBgxtAAoJEDttBqDEKEN6KgIH+gPf0Zde3aX8WDwqMx7YCHZA QbdZe0vffjXBYdcxv7fUX/rYuxjYIhNHIMOaRjzisqMJeU6wZ4NguZy9du4lqDZQ 831QuaJQaYFM4bexSBlBNfkP6t8EV5FUBRG2COVPqQmliZhrtKN6t3KIqlPp5lp0 4L+wVdEpzg0FrPjZLAmdxuEU6y1L08n50HMCovbnggnXFgSyHaFdSwHivX/0quss xn13p0Zb6vWXJNdCB0LaBpvfaxel/bry8RvY+mZwevoQfWVAyQYQOVOgDl7jlei1 R1qkTvPOhBs5uXD+fGSx0KsoOqqA44VUTjWnHY2HHn2Mf7yd/eDy9gFwhqmKvLo= =plqY -----END PGP SIGNATURE----- Merge tag '2.0.0' This is a null-merge of the 2.0.0 release tag back into the master branch so that the 2.0.0 tag will appear in the git commit history of the master branch. It contains no actual changes to the master branch, regardless of how our code review system's UI represents it. Please ask in #openstack-infra if you have any questions, and otherwise try to merge this as quickly as possible to avoid later conflicts on the master branch. Change-Id: I34adf074adfe03d7aaeec0647735c2d0160df2d8
designatedashboard
Designate Horizon UI bits
- Free software: Apache license
Features
- TODO
Howto
Package the designatedashboard by running:
python setup.py sdist
This will create a python egg in the dist folder, which can be used to install on the horizon machine or within horizon's python virtual environment.
-- or --
Install directly from source by running "python setup.py --install"
Note: On some systems python may throw an error like
- 'Exception: Versioning for this project requires either an sdist tarball, or access
-
to an upstream git repository'
this seems to be a result of mismatched pbr versioning. A hacking workaround for development purposes is replacing the pbr call with a hard-coded version (e.g. '1.0.1') in designatedashboard/__init__.py.
Copy panel plugin files into your Horizon config. These files can be found in designatedashboard/enabled and should be copied to /usr/share/openstack-dashboard/openstack_dashboard/local/enabled or the equivalent directory for your openstack-dashboard install.
Make sure your keystone catalog contains endpoints for service type 'dns'. If no such endpoints are found, the designatedashboard panels will not render.
(Optional) Copy the designate policy file into horizon's policy files folder, and add this config:
'dns': 'designate_policy.json',
(Optional) Within your horizon settings file(s) (either the local settings or the other settings.py), add the line below. This will make it so the record create/update screen uses a drop down of your floating ip addresses instead of a free form text field:
DESIGNATE = { 'records_use_fips': True }