summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorOpenShift Bot <eparis+openshiftbot@redhat.com>2017-08-15 21:43:08 -0400
committerGitHub <noreply@github.com>2017-08-15 21:43:08 -0400
commit8da216496dc39f1bd9340387af199eb404099edf (patch)
treed9d63894dc8315792d60086ef8f86bc8c6358a8a /playbooks
parentbf27e05caafb41638f82a64dda7c9dc7fc3ce874 (diff)
parentba6b4e8c24c9ef21eeed43c554b9b23a33946e87 (diff)
downloadopenshift-8da216496dc39f1bd9340387af199eb404099edf.tar.gz
openshift-8da216496dc39f1bd9340387af199eb404099edf.tar.bz2
openshift-8da216496dc39f1bd9340387af199eb404099edf.tar.xz
openshift-8da216496dc39f1bd9340387af199eb404099edf.zip
Merge pull request #5090 from mtnbikenc/validate_hostnames
Merged by openshift-bot
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/common/openshift-cluster/validate_hostnames.yml15
1 files changed, 10 insertions, 5 deletions
diff --git a/playbooks/common/openshift-cluster/validate_hostnames.yml b/playbooks/common/openshift-cluster/validate_hostnames.yml
index 33fc5630f..be2e6a15a 100644
--- a/playbooks/common/openshift-cluster/validate_hostnames.yml
+++ b/playbooks/common/openshift-cluster/validate_hostnames.yml
@@ -1,17 +1,22 @@
---
-- name: Gather and set facts for node hosts
+- name: Validate node hostnames
hosts: oo_nodes_to_config
- roles:
- - openshift_facts
tasks:
- - shell:
+ - name: Query DNS for IP address of {{ openshift.common.hostname }}
+ shell:
getent ahostsv4 {{ openshift.common.hostname }} | head -n 1 | awk '{ print $1 }'
register: lookupip
changed_when: false
failed_when: false
- name: Warn user about bad openshift_hostname values
pause:
- prompt: "The hostname \"{{ openshift.common.hostname }}\" for \"{{ ansible_nodename }}\" doesn't resolve to an ip address owned by this host. Please set openshift_hostname variable to a hostname that when resolved on the host in question resolves to an IP address matching an interface on this host. This host will fail liveness checks for pods utilizing hostPorts, press ENTER to continue or CTRL-C to abort."
+ prompt:
+ The hostname {{ openshift.common.hostname }} for {{ ansible_nodename }}
+ doesn't resolve to an IP address owned by this host. Please set
+ openshift_hostname variable to a hostname that when resolved on the host
+ in question resolves to an IP address matching an interface on this
+ host. This host will fail liveness checks for pods utilizing hostPorts,
+ press ENTER to continue or CTRL-C to abort.
seconds: "{{ 10 if openshift_override_hostname_check | default(false) | bool else omit }}"
when:
- lookupip.stdout != '127.0.0.1'