diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-08-29 18:34:21 -0400 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-08-31 10:01:26 -0400 |
commit | 0ae8e9804070a829b719b8141210f44d8d79f92c (patch) | |
tree | 74a5cb5dfeb0aa01e5d2a11780859ec97b4f59bd /roles/dns/README.md | |
parent | 7faa0c4111252a2710166cdbd027575e1cf1cb8a (diff) | |
download | openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.tar.gz openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.tar.bz2 openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.tar.xz openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.zip |
Removed dns role
This commit removes now-unused dns role.
Diffstat (limited to 'roles/dns/README.md')
-rw-r--r-- | roles/dns/README.md | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/roles/dns/README.md b/roles/dns/README.md deleted file mode 100644 index 9a88ce97c..000000000 --- a/roles/dns/README.md +++ /dev/null @@ -1,45 +0,0 @@ -dns -=== - -Configure a DNS server serving IPs of all the nodes of the cluster - -Requirements ------------- - -Ansible 2.2 - -Role Variables --------------- - -| Name | Mandatory / Optional | Description | -|------|----------------------|-------------| -| `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 ------------- - -None - -Example Playbook ----------------- - - - hosts: dns_hosts - roles: - - role: dns - 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 -------- - -ASL 2.0 - -Author Information ------------------- - -OpenShift operations, Red Hat, Inc |