config.yml 675 B

123456789101112131415161718192021222324252627
  1. ---
  2. - include: initialize_groups.yml
  3. tags:
  4. - always
  5. - name: Verify Requirements
  6. hosts: OSEv3
  7. roles:
  8. - openshift_health_checker
  9. vars:
  10. - r_openshift_health_checker_playbook_context: "install"
  11. post_tasks:
  12. - action: openshift_health_check
  13. args:
  14. checks:
  15. - disk_availability
  16. - memory_availability
  17. - include: ../../common/openshift-cluster/std_include.yml
  18. tags:
  19. - always
  20. - include: ../../common/openshift-cluster/config.yml
  21. vars:
  22. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  23. openshift_debug_level: "{{ debug_level | default(2) }}"
  24. openshift_deployment_subtype: "{{ deployment_subtype | default(none) }}"