Use this interface to expose public API endpoint of Designate service.
To consume this interface in your charm or layer, add the following to layer.yaml
:
includes: ['interface:designate']
and the following to metadata.yaml
:
requires:
external-dns:
interface: designate
@reactive.when('external-dns.available')
def expose_endpoint(endpoint):
with provide_charm_instance() as instance:
endpoint.expose_endpoint(instance.public_url)
$ juju deploy designate
$ juju deploy neutron-api
$ juju add-relation designate:external-dns neutron-api:external-dns
Please report bugs on Launchpad.
For development questions please refer to the OpenStack Charm Guide.