validate_hostnames.yml 1.0 KB

1234567891011121314151617181920212223
  1. ---
  2. - name: Validate node hostnames
  3. hosts: oo_nodes_to_config
  4. tasks:
  5. - name: Query DNS for IP address of {{ openshift.common.hostname }}
  6. shell:
  7. getent ahostsv4 {{ openshift.common.hostname }} | head -n 1 | awk '{ print $1 }'
  8. register: lookupip
  9. changed_when: false
  10. failed_when: false
  11. - name: Warn user about bad openshift_hostname values
  12. pause:
  13. prompt:
  14. The hostname {{ openshift.common.hostname }} for {{ ansible_nodename }}
  15. doesn't resolve to an IP address owned by this host. Please set
  16. openshift_hostname variable to a hostname that when resolved on the host
  17. in question resolves to an IP address matching an interface on this
  18. host. This host will fail liveness checks for pods utilizing hostPorts,
  19. press ENTER to continue or CTRL-C to abort.
  20. seconds: "{{ 10 if openshift_override_hostname_check | default(false) | bool else omit }}"
  21. when:
  22. - lookupip.stdout != '127.0.0.1'
  23. - lookupip.stdout not in ansible_all_ipv4_addresses