
This is a complete DNS solution, with hidden master and bind9 slave. It lacks the designate-sink service, because there is no true specification to implement that. It listens for Nova/Neutron events and creates records though adding those to just 1 domain isn't helping much in an environment with multiple tenants. Change-Id: I500fb6058b118d25a4ccfd1d3479830c36af7e2a Blueprint: designate-container
18 lines
698 B
Docker
18 lines
698 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
# Install designate-api because of /etc/designate/policy.json, which
|
|
# is needed in all services. This is probably a packaging bug. We do
|
|
# need the complete policy file because of some of the containers'
|
|
# requiring it. Remove the package when the file is moved though.
|
|
RUN yum install -y \
|
|
MySQL-python \
|
|
openstack-designate-api \
|
|
openstack-designate-common \
|
|
&& yum clean all \
|
|
&& cp /etc/designate/policy.json /tmp/ \
|
|
&& rpm -e openstack-designate-api \
|
|
&& mv /tmp/policy.json /etc/designate/
|
|
|
|
COPY config-designate.sh /opt/kolla/config-designate.sh
|