OpenStack DNS As A Service (Designate)
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
Graham Hayes c9060609fb Add missing zake lib to t-r
Change-Id: Ibbd40e21e1739a171b4c1ce0213396fa04b15075
7 years ago
api-ref/source Merge "Add docs for zone ownership transfer_accept API" 7 years ago
contrib Add centos7, remove Fedora Vagrant VM 7 years ago
designate Catch duplicate db inserts in powerdns plugin 7 years ago
devstack Add centos7, remove Fedora Vagrant VM 7 years ago
doc Fix 'Duplicate explicit target name' error in 'tox -e docs' 7 years ago
etc/designate Add djbdns backend 7 years ago
functionaltests Merge "Remove migrated "unauthed" functional tests" 7 years ago
rally-jobs Grammar mistakes have been corrected 8 years ago
releasenotes Add djbdns backend 7 years ago
tools Removed old tooling for ks CLI 7 years ago
.coveragerc Change ignore-errors to ignore_errors 8 years ago
.gitignore Add etc/designate/*.yaml to .gitignore 7 years ago
.gitreview Update .gitreview for repository move 9 years ago
.testr.conf Add functional tox env 8 years ago
LICENSE Add LICENSE file. 10 years ago
README.rst Update README to RST 7 years ago
babel.cfg Setup for translation 9 years ago
designate.sublime-project Add __pycache__ to ST2 Ignore 8 years ago
ipa-requirements.txt add support for FreeIPA backend - phase 5 - requirements 9 years ago
openstack-common.conf Switch to oslo.reports 8 years ago
requirements.txt Updated from global requirements 7 years ago
setup.cfg Add djbdns backend 7 years ago
setup.py Updated from global requirements 8 years ago
test-requirements.txt Add missing zake lib to t-r 7 years ago
tests-py3.txt Fix rrset serialization, improve mdns tests 7 years ago
tox.ini Fix parameters.yaml order 7 years ago

README.rst

OpenStack Designate

Designate is an OpenStack project, providing DNSaaS.

IRC: #openstack-dns

Installation: http://docs.openstack.org/developer/designate/getting-started.html

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