config.yml 808 B

1234567891011121314151617181920212223242526272829303132
  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. - package_availability
  18. - package_update
  19. - package_version
  20. - docker_image_availability
  21. - docker_storage
  22. - include: ../../common/openshift-cluster/std_include.yml
  23. tags:
  24. - always
  25. - include: ../../common/openshift-cluster/config.yml
  26. vars:
  27. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  28. openshift_debug_level: "{{ debug_level | default(2) }}"
  29. openshift_deployment_subtype: "{{ deployment_subtype | default(none) }}"