validate_hostnames.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. - name: Validate node hostnames
  3. hosts: oo_nodes_to_config
  4. any_errors_fatal: true
  5. tasks:
  6. - name: Query DNS for IP address of {{ openshift.common.hostname }}
  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: Validate openshift_hostname when defined
  13. fail:
  14. msg: >
  15. The hostname {{ openshift.common.hostname }} for {{ ansible_nodename }}
  16. doesn't resolve to an IP address owned by this host. Please set
  17. openshift_hostname variable to a hostname that when resolved on the host
  18. in question resolves to an IP address matching an interface on this host.
  19. This will ensure proper functionality of OpenShift networking features.
  20. Inventory setting: openshift_hostname={{ openshift_hostname | default ('undefined') }}
  21. This check can be overridden by setting openshift_hostname_check=false in
  22. the inventory.
  23. See https://docs.okd.io/latest/install_config/install/advanced_install.html#configuring-host-variables
  24. when:
  25. - lookupip.stdout != '127.0.0.1'
  26. - lookupip.stdout not in ansible_all_ipv4_addresses
  27. - openshift_hostname_check | default(true) | bool
  28. - name: Validate openshift_ip exists on node when defined
  29. fail:
  30. msg: >
  31. The IP address {{ openshift_ip }} does not exist on {{ ansible_nodename }}.
  32. Please set the openshift_ip variable to an IP address of this node.
  33. This will ensure proper functionality of OpenShift networking features.
  34. Inventory setting: openshift_ip={{ openshift_ip }}
  35. This check can be overridden by setting openshift_ip_check=false in
  36. the inventory.
  37. See https://docs.okd.io/latest/install_config/install/advanced_install.html#configuring-host-variables
  38. when:
  39. - openshift_ip is defined
  40. - openshift_ip not in ansible_all_ipv4_addresses
  41. - openshift_ip_check | default(true) | bool