OpenStack DNS As A Service (Designate)
Go to file
ghanshyam 194d9fcd7f Remove use of unsupported TEMPEST_SERVICES variable
TEMPEST_SERVICES global variable is not supported
by devstack since long back.
- I380dd20e5ed716a0bdf92aa02c3730359b8136e4
- I9c24705e494689f09a885eb0a640efd50db33fcf

Service availability of tempest known services will be
set by devstack with local check.
- I02be777bf93143d946ccbb8e9eff637bfd1928d4

This commit removes the unused TEMPEST_SERVICES setting
Related-Bug: #1743688

Change-Id: I596e45d0922686ce916fe4342d3d6357b57b91bb
2018-01-23 16:46:20 +03:00
api-ref/source Remove v1 API 2018-01-11 14:13:43 +00:00
contrib Remove v1 API 2018-01-11 14:13:43 +00:00
designate Remove v1 API 2018-01-11 14:13:43 +00:00
devstack Remove use of unsupported TEMPEST_SERVICES variable 2018-01-23 16:46:20 +03:00
doc Remove v1 API 2018-01-11 14:13:43 +00:00
etc/designate Remove v1 API 2018-01-11 14:13:43 +00:00
playbooks/legacy Remove v1 API 2018-01-11 14:13:43 +00:00
rally-jobs
releasenotes Remove v1 API 2018-01-11 14:13:43 +00:00
tools
.coveragerc
.gitignore Update .gitignore 2017-12-01 13:20:38 +07:00
.gitreview
.testr.conf
.zuul.yaml Run neutron-tempest-plugin-designate-scenario job 2018-01-08 08:24:50 +00:00
LICENSE
README.rst
babel.cfg
designate.sublime-project
ipa-requirements.txt
requirements.txt Updated from global requirements 2018-01-16 12:25:57 +00:00
setup.cfg Remove v1 API 2018-01-11 14:13:43 +00:00
setup.py
test-requirements.txt Updated from global requirements 2018-01-17 20:30:34 +00:00
tox.ini

README.rst

Team and repository tags

image

OpenStack Designate

Designate is an OpenStack project, providing DNSaaS.

IRC: #openstack-dns

Installation: https://docs.openstack.org/designate/latest/

Development

Designate follows the OpenStack Gerrit Workflow

Setup

Setup a working environment:

git clone https://github.com/openstack/designate.git
cd designate
virtualenv .venv
. .venv/bin/activate
pip install -r requirements.txt -r test-requirements.txt
python setup.py develop

Building Docs

To build the documentation from the restructured text source, do the following:

cd doc
pip install -r requirements.txt
sphinx-build  source/ build/html/

now point your browser at html/index.html (the official documentation is published to docs.openstack.org by the maintainers.

Contributing

Install the git-review package to make life easier

pip install git-review

Branch, work, & submit:

# cut a new branch, tracking master
git checkout --track -b bug/id origin/master
# work work work
git add stuff
git commit
# rebase/squash to a single commit before submitting
git rebase -i
# submit
git-review

Testing

Execute a single test using py27 (test is CentralServiceTest.test_count_domains)

tox -e py27 -- designate.tests.test_central.test_service.CentralServiceTest.test_count_zones_policy_check