config.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - include: initialize_oo_option_facts.yml
  3. tags:
  4. - always
  5. - name: Disable excluders
  6. hosts: oo_masters_to_config:oo_nodes_to_config
  7. tags:
  8. - always
  9. gather_facts: no
  10. roles:
  11. - role: openshift_excluder
  12. r_openshift_excluder_action: disable
  13. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"
  14. - include: ../openshift-etcd/config.yml
  15. tags:
  16. - etcd
  17. - include: ../openshift-nfs/config.yml
  18. tags:
  19. - nfs
  20. - include: ../openshift-loadbalancer/config.yml
  21. tags:
  22. - loadbalancer
  23. - include: ../openshift-master/config.yml
  24. tags:
  25. - master
  26. - include: additional_config.yml
  27. tags:
  28. - master
  29. - include: ../openshift-node/config.yml
  30. tags:
  31. - node
  32. - include: ../openshift-glusterfs/config.yml
  33. tags:
  34. - glusterfs
  35. - include: openshift_hosted.yml
  36. tags:
  37. - hosted
  38. - include: service_catalog.yml
  39. when:
  40. - openshift_enable_service_catalog | default(false) | bool
  41. tags:
  42. - servicecatalog
  43. - name: Re-enable excluder if it was previously enabled
  44. hosts: oo_masters_to_config:oo_nodes_to_config
  45. tags:
  46. - always
  47. gather_facts: no
  48. roles:
  49. - role: openshift_excluder
  50. r_openshift_excluder_action: enable
  51. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"