config.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. - name: Re-enable excluder if it was previously enabled
  39. hosts: oo_masters_to_config:oo_nodes_to_config
  40. tags:
  41. - always
  42. gather_facts: no
  43. roles:
  44. - role: openshift_excluder
  45. r_openshift_excluder_action: enable
  46. r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"