diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-09-01 16:59:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-01 16:59:13 -0400 |
commit | 42c508571e797f7e548753295b4bdcfb4e50f5fb (patch) | |
tree | 8639439367c4562e8215d755961953c99af7ed95 /roles/dns/README.md | |
parent | b2ccb858cb675d7a30179d1a60e638e9e311a4d5 (diff) | |
parent | 0ae8e9804070a829b719b8141210f44d8d79f92c (diff) | |
download | openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.tar.gz openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.tar.bz2 openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.tar.xz openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.zip |
Merge pull request #5261 from mgugino-upstream-stage/remove-dns-openshift-facts
Merged by openshift-bot
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 |