config.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ---
  2. - include: std_include.yml
  3. tags:
  4. - always
  5. # TODO: refactor this into its own include
  6. # and pass a variable for ctx
  7. - name: Verify Requirements
  8. hosts: oo_all_hosts
  9. roles:
  10. - openshift_health_checker
  11. vars:
  12. - r_openshift_health_checker_playbook_context: install
  13. post_tasks:
  14. - action: openshift_health_check
  15. args:
  16. checks:
  17. - disk_availability
  18. - memory_availability
  19. - package_availability
  20. - package_version
  21. - docker_image_availability
  22. - docker_storage
  23. - include: initialize_oo_option_facts.yml
  24. tags:
  25. - always
  26. - name: Disable excluders
  27. hosts: oo_masters_to_config:oo_nodes_to_config
  28. tags:
  29. - always
  30. gather_facts: no
  31. roles:
  32. - role: openshift_excluder
  33. r_openshift_excluder_action: disable
  34. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"
  35. - include: ../openshift-etcd/config.yml
  36. tags:
  37. - etcd
  38. - include: ../openshift-nfs/config.yml
  39. tags:
  40. - nfs
  41. - include: ../openshift-loadbalancer/config.yml
  42. tags:
  43. - loadbalancer
  44. - include: ../openshift-master/config.yml
  45. tags:
  46. - master
  47. - include: additional_config.yml
  48. tags:
  49. - master
  50. - include: ../openshift-node/config.yml
  51. tags:
  52. - node
  53. - include: ../openshift-glusterfs/config.yml
  54. tags:
  55. - glusterfs
  56. - include: openshift_hosted.yml
  57. tags:
  58. - hosted
  59. - include: service_catalog.yml
  60. when:
  61. - openshift_enable_service_catalog | default(false) | bool
  62. tags:
  63. - servicecatalog
  64. - name: Re-enable excluder if it was previously enabled
  65. hosts: oo_masters_to_config:oo_nodes_to_config
  66. tags:
  67. - always
  68. gather_facts: no
  69. roles:
  70. - role: openshift_excluder
  71. r_openshift_excluder_action: enable
  72. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"