sanity_checks.yml 798 B

12345678910111213141516171819
  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: {}