charm-designate/src
James Page 53c204a796 Drop use of 'amqp.requested-access' flag
In an amqp relation is removed and re-added, the charm won't
make a new request for access.  As the handler simply sets two
data items on the relation, avoid the use of the requested-access
flag.

Change-Id: Ibbffabe277adacf966443bae04a6a64a07964261
Closes-Bug: 1784076
2018-11-27 13:59:06 +00:00
..
lib/charm Deal with py2-py3 payload switch during upgrade-charm 2018-11-15 11:14:49 +00:00
reactive Drop use of 'amqp.requested-access' flag 2018-11-27 13:59:06 +00:00
templates Rocky requires the port option for targets 2018-11-06 18:49:26 -08:00
tests Add pause/resume actions to designate 2018-09-21 12:35:19 +00:00
README.md Update readme for queens 2018-03-08 11:10:23 +01:00
config.yaml Allow overriding the default default_soa_expire 2018-07-30 14:35:19 +09:00
icon.svg Update charm icon 2017-08-02 18:36:38 +01:00
layer.yaml Designate - Neutron integration 2018-01-18 13:49:27 -08:00
metadata.yaml Update series metadata 2018-07-11 14:04:19 -05:00
test-requirements.txt Update requirements 2018-10-04 10:51:40 -05:00
tox.ini Merge "py3: Switch to using Python 3 for rocky or later" 2018-09-21 10:22:43 +00:00

README.md

Overview

This charm provides Designate (DNSaaS) for an OpenStack Cloud.

Usage

Designate relies on services from the mysql, rabbitmq-server and keystone charms:

juju deploy designate
juju deploy mysql
juju deploy rabbitmq-server
juju deploy keystone
juju deploy memcached
juju add-relation designate memcached
juju add-relation designate mysql
juju add-relation designate rabbitmq-server
juju add-relation designate keystone

To add support for DNS record auto-generation when Neutron ports and floating IPs are created the charm needs a relation with neutron-api charm:

juju deploy neutron-api
juju add-relation designate neutron-api

The charm needs to store DNS records. This can be achieved by setting the dns-slave config option or by relating to the designate-bind charm:

juju deploy designate-bind
juju add-relation designate designate-bind

For Queens and later, the nameservers config value must be set:

juju config designate nameservers="ns1.example.com. ns2.example.com."

Bugs

Please report bugs on Launchpad.

For general questions please refer to the OpenStack Charm Guide.