validate_hostnames.yml 925 B

12345678910111213141516
  1. ---
  2. - name: Gather and set facts for node hosts
  3. hosts: oo_nodes_to_config
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. - shell:
  8. getent ahostsv4 {{ openshift.common.hostname }} | head -n 1 | awk '{ print $1 }'
  9. register: lookupip
  10. changed_when: false
  11. failed_when: false
  12. - name: Warn user about bad openshift_hostname values
  13. pause:
  14. 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."
  15. seconds: "{{ 10 if openshift_override_hostname_check | default(false) | bool else omit }}"
  16. when: lookupip.stdout not in ansible_all_ipv4_addresses