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
Kiall Mac Innes c792879232 Add __pycache__ to ST2 Ignore
Change-Id: I47d19efbd14a979c859cadaeb4063f6ab7ac0515
8 years ago
contrib Merge "Switch from MySQL-python to PyMySQL" 8 years ago
designate Ensure only one pool-manager performs periodic tasks 8 years ago
doc Merge "Enable filter on blacklists & tlds" 8 years ago
etc/designate Correct sample coord URL 8 years ago
functionaltests Merge "Increase coverage of RRset tests" 8 years ago
rally-jobs Changes in rally-jobs/README.rst 8 years ago
tools Add pretty_tox subunit wrapper 8 years ago
.coveragerc Add .coveragerc configuration file 9 years ago
.gitignore Add .eggs to .gitignore 8 years ago
.gitreview Update .gitreview for repository move 9 years ago
.testr.conf Update testr config for better logging 9 years ago
LICENSE Add LICENSE file. 10 years ago
MANIFEST.in Add pool_manager migrate.cfg in MANIFEST.in 8 years ago
README.md Update README.md doc build instructions 9 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 port to oslo.service 8 years ago
requirements.txt Updated from global requirements 8 years ago
setup.cfg Add tasks and periodic emits 8 years ago
setup.py Updated from global requirements 8 years ago
test-requirements.txt Updated from global requirements 8 years ago
tox.ini Designate Dashboard now has it's own repo 8 years ago

README.md

Introduction

Designate is an OpenStack inspired DNSaaS.

Docs: http://docs.openstack.org/developer/designate and some below for now. Bugs / Blueprints: http://launchpad.net/designate

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 git@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 the documentation

To build the documentation from the restructred 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.py:CentralServiceTest.test_count_domains