diff options
author | Jan Provaznik <jprovazn@redhat.com> | 2016-03-31 10:57:30 +0200 |
---|---|---|
committer | Jan Provaznik <jprovazn@redhat.com> | 2016-04-26 13:57:29 +0200 |
commit | c76ae7d9398e3a04ded06c7e54811ad7a379921a (patch) | |
tree | ab357af1c7c0dec843279afdcd2c35974d6a5ec5 /roles/dns/README.md | |
parent | 7c6d0d70e2371bd9abb6feb4e6c098ae4ddb5143 (diff) | |
download | openshift-c76ae7d9398e3a04ded06c7e54811ad7a379921a.tar.gz openshift-c76ae7d9398e3a04ded06c7e54811ad7a379921a.tar.bz2 openshift-c76ae7d9398e3a04ded06c7e54811ad7a379921a.tar.xz openshift-c76ae7d9398e3a04ded06c7e54811ad7a379921a.zip |
Allow containerized deployment of dns role
If containerized, docker image for bind service is built during
ansible run. The default named systemd unit file triggers
named-checkconf on named service start so it's not neccessary
to include this validation when copying file templates (equivalent
named-checkconf is included in the containerized named unit file too).
Diffstat (limited to 'roles/dns/README.md')
-rw-r--r-- | roles/dns/README.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/dns/README.md b/roles/dns/README.md index e238fb92e..7e0140772 100644 --- a/roles/dns/README.md +++ b/roles/dns/README.md @@ -16,6 +16,7 @@ Role Variables | `dns_zones` | Mandatory | DNS zones in which we must find the hosts | | `dns_forwarders` | If not set, the DNS will be a recursive non-forwarding DNS server | DNS forwarders to delegate the requests for hosts outside of `dns_zones` | | `dns_all_hosts` | Mandatory | Exhaustive list of hosts | +| `base_docker_image` | Optional | Base docker image to build Bind image from, used only in containerized deployments | Dependencies ------------ @@ -31,6 +32,7 @@ Example Playbook dns_forwarders: [ '8.8.8.8', '8.8.4.4' ] dns_zones: [ novalocal, openstacklocal ] dns_all_hosts: "{{ g_all_hosts }}" + base_docker_image: 'centos:centos7' License ------- |