OpenStack DNS As A Service (Designate) Horizon Plugin
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
OpenStack Proposal Bot fd72a687cb Imported Translations from Zanata
For more information about this automatic import see:
https://docs.openstack.org/i18n/latest/reviewing-translation-import.html

Change-Id: I12f34af4f2925fda6882ad2f2780e0747b40fbdf
4 weeks ago
designatedashboard Fix details pages reload behaviour 9 months ago
doc Switch to newer openstackdocstheme and reno versions 3 years ago
releasenotes Imported Translations from Zanata 4 weeks ago
.eslintrc Fix designate-dashboard lint 12 months ago
.gitignore AngularJS unittest with Jasmine and Karma 6 years ago
.gitreview OpenDev Migration Patch 4 years ago
.zuul.yaml Switch to 2023.1 Python3 unit tests and generic template name 9 months ago
CONTRIBUTING.rst Optimize the link address 6 years ago
HACKING.rst Sync Sphinx requirement 4 years ago
LICENSE Added designate-dashboard code to contrib/designate-dashboard 9 years ago
README.rst Add example dashboard config file 1 year ago
babel-django.cfg translation: drop babel extractor definitions 3 years ago
bindep.txt Fix a missing font for PDF doc generation 2 years ago
karma.conf.js Remove hard-coded Python path in karma.conf.js 4 months ago
manage.py Fix manage.py for the default case 12 months ago
package.json Remove hard-coded Python path in karma.conf.js 4 months ago
requirements.txt Merge "Remove unused designateclient" 12 months ago
setup.cfg Update python testing as per zed cycle testing runtime 12 months ago
setup.py Cleanup py27 support 3 years ago
test Added designate-dashboard code to contrib/designate-dashboard 9 years ago
test-requirements.txt Fix hacking min version to 3.0.1 3 years ago
test-shim.js AngularJS unittest with Jasmine and Karma 6 years ago
tox.ini Remove hard-coded Python path in karma.conf.js 4 months ago

README.rst

Team and repository tags

image

designate dashboard

Designate Horizon UI bits

  • Free software: Apache license

Features

  • TODO

Howto

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

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

  3. Copy default config file into your Horizon config. The file can be found in designatedashboard/local_settings.d and should be copied to /etc/openstack-dashboard/local_settings.d or the equivalent directory for your openstack-dashboard install.

  4. Make sure your keystone catalog contains endpoints for service type 'dns'. If no such endpoints are found, the designatedashboard panels will not render.

  5. (Optional) Copy the designate policy file into horizon's policy files folder.

Test

  • How to run JS tests:

    • Install npm and nodejs=4.8.4

    $ sudo apt-get install npm $ curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - $ sudo apt-get install nodejs

    1. npm install (to create virtual environment and install all dependencies in package.json)
    2. npm run lint for eslint
    3. npm run test for JS unit tests