OpenStack DNS As A Service (Designate)
Go to file
Kiall Mac Innes 4652c95431 Add DevStack documentation page
Change-Id: I8206418bbbcdf06ff55c241194ccc8e01cbf9f4f
2013-07-12 14:42:08 +01:00
bin Sync with oslo stable/grizzly c7862b5239822d701b7fb155faa4607eff602627 2013-07-03 14:47:22 +01:00
designate Override default config values correctly 2013-07-12 13:28:10 +01:00
doc Add DevStack documentation page 2013-07-12 14:42:08 +01:00
etc/designate Override default config values correctly 2013-07-12 13:28:10 +01: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 Sync with oslo stable/grizzly c7862b5239822d701b7fb155faa4607eff602627 2013-07-03 14:47:22 +01:00
README.md Added notes on setting up a designate dev environment 2013-06-27 14:05:15 +01:00
requirements.txt Remove comments from *requirements.txt (workaround pbr bug) 2013-07-09 12:31:44 +01:00
setup.cfg Bump version to 2013.2 2013-06-11 12:38:29 +01:00
setup.py Switch to PBR 2013-05-31 21:41:45 +01:00
test-requirements.txt Remove comments from *requirements.txt (workaround pbr bug) 2013-07-09 12:31:44 +01:00
tox.ini Switch to Flake8 and add Hacking checks 2013-06-09 14:52:19 +01:00

Introduction

Designate is an OpenStack inspired DNSaaS.

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

IRC: #openstack-dns

Installation: http://moniker.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