OpenStack DNS As A Service (Designate)
Go to file
Kiall Mac Innes 6b161e41a1 Ensure Code Coverage only includes designate
Change-Id: I73de4f2b2783f6276fb45364e3579f71e310d965
2013-07-29 13:02:57 +01:00
bin Sync with oslo stable/grizzly c7862b5239822d701b7fb155faa4607eff602627 2013-07-03 14:47:22 +01:00
designate Ensure StorageAPI always re-raises exceptions appropriately 2013-07-24 15:52:13 +01:00
doc corrected event details in Nova Handler notes 2013-07-24 14:26:02 +01:00
etc/designate Merge "Implement a Quota management API extension" 2013-07-18 09:20:34 +00:00
tools Rename keystone-setup script for designate 2013-06-13 13:34:51 +01:00
.gitignore Rename Moniker -> Designate 2013-06-09 21:15:03 +01:00
.gitreview Rename to designate in .gitreview. 2013-06-14 18:29:25 -04:00
designate.sublime-project Rename Moniker -> Designate 2013-06-09 21:15:03 +01:00
LICENSE Add LICENSE file. 2013-06-18 16:13:03 -04:00
MANIFEST.in Rename Moniker -> Designate 2013-06-09 21:15:03 +01:00
openstack-common.conf Remove openstack.common.cfg. 2013-07-20 12:56:05 +01:00
README.md Update docs links from moniker.rtfd.org to designate.rtfd.org 2013-07-16 15:42:49 +01:00
requirements.txt Sync requirements with openstack/requirements 2013-07-20 13:18:28 +01:00
setup.cfg Remove invalid entrypoints 2013-07-19 16:03:20 +01:00
setup.py Switch to PBR 2013-05-31 21:41:45 +01:00
test-requirements.txt Sync requirements with openstack/requirements 2013-07-20 13:18:28 +01:00
tox.ini Ensure Code Coverage only includes designate 2013-07-29 13:02:57 +01:00

Introduction

Designate is an OpenStack inspired DNSaaS.

Docs: http://designate.readthedocs.org and some below for now. Bugs / Blueprints: http://launchpad.net/moniker

IRC: #openstack-dns

Installation: http://designate.readthedocs.org/en/latest/install.html

TODOs:

  • Documentation!
  • Fixup Bind9 agent implementation so it could be considered even remotely reliable
  • Re-Add PowerDNS agent implementation.
  • Unit Tests!!
  • Integration with other OS servers eg Nova and Quantum
    • Listen for floating IP allocation/deallocation events - giving user access to the necessary PTR record.
    • Listen for server create/destroy events - creating DNS records as needed.
    • Listen for server add/remove from security group events - creating "load balancing" DNS RR records as needed.
  • Introduce Server Pools
    • Server pools will allow a provider to 'schedule' a end users domain to one of many available DNS server pools

Development

Designate follows the OpenStack Gerrit Workflow

Setup

Setup a working environment:

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

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