sanity_checks.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # l_sanity_check_hosts may be passed in during scale-up plays
  3. - name: Verify Requirements
  4. hosts: oo_first_master
  5. roles:
  6. - role: openshift_facts
  7. - role: lib_utils
  8. tasks:
  9. # sanity_checks is a custom action plugin defined in lib_utils.
  10. # This module will loop through all the hostvars for each host
  11. # specified in check_hosts.
  12. # Since sanity_checks is an action_plugin, it executes on the control host.
  13. # Thus, sanity_checks cannot gather new information about any hosts.
  14. - name: Run variable sanity checks
  15. sanity_checks:
  16. check_hosts: "{{ l_sanity_check_hosts | default(groups['oo_all_hosts']) }}"
  17. # node_group_checks is a custom action plugin defined in lib_utils.
  18. - name: Validate openshift_node_groups and openshift_node_group_name
  19. node_group_checks: {}
  20. # l_networkman_check_hosts may be passed in via playbooks/deploy_cluster.yml
  21. # and master/node scaleup plays
  22. - name: Verify Node NetworkManager
  23. # We only want to run this on new installs and node/master scaleup.
  24. hosts: "{{ l_networkman_check_hosts | default('all:!all') }}"
  25. tasks:
  26. - name: Check for NetworkManager service
  27. command: 'systemctl show NetworkManager'
  28. register: nm_show
  29. changed_when: false
  30. ignore_errors: True
  31. - fail: msg="Currently, NetworkManager must be installed and enabled prior to installation."
  32. when:
  33. - not ('ActiveState=active' in nm_show.stdout) | bool