config.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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: Setup firewall
  27. hosts: oo_all_hosts
  28. tags:
  29. - always
  30. tasks:
  31. # This should move to intialize_facts
  32. - name: set os_firewall_enabled
  33. set_fact:
  34. os_firewall_enabled: true
  35. os_firewall_use_firewalld: false
  36. - name: Set proper firewall settings
  37. include_role:
  38. name: os_firewall
  39. - name: Disable excluders
  40. hosts: oo_masters_to_config:oo_nodes_to_config
  41. tags:
  42. - always
  43. gather_facts: no
  44. roles:
  45. - role: openshift_excluder
  46. r_openshift_excluder_action: disable
  47. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"
  48. - include: ../openshift-etcd/config.yml
  49. tags:
  50. - etcd
  51. - include: ../openshift-nfs/config.yml
  52. tags:
  53. - nfs
  54. - include: ../openshift-loadbalancer/config.yml
  55. tags:
  56. - loadbalancer
  57. - include: ../openshift-master/config.yml
  58. tags:
  59. - master
  60. - include: additional_config.yml
  61. tags:
  62. - master
  63. - include: ../openshift-node/config.yml
  64. tags:
  65. - node
  66. - include: ../openshift-glusterfs/config.yml
  67. tags:
  68. - glusterfs
  69. - include: openshift_hosted.yml
  70. tags:
  71. - hosted
  72. - include: service_catalog.yml
  73. when:
  74. - openshift_enable_service_catalog | default(false) | bool
  75. tags:
  76. - servicecatalog
  77. - name: Re-enable excluder if it was previously enabled
  78. hosts: oo_masters_to_config:oo_nodes_to_config
  79. tags:
  80. - always
  81. gather_facts: no
  82. roles:
  83. - role: openshift_excluder
  84. r_openshift_excluder_action: enable
  85. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"