additional_config.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. - name: Master Additional Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Master Additional install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_master_additional:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: Additional master configuration
  14. hosts: oo_first_master
  15. vars:
  16. cockpit_plugins: "{{ osm_cockpit_plugins | default(['cockpit-kubernetes']) }}"
  17. etcd_urls: "{{ openshift_master_etcd_urls }}"
  18. omc_cluster_hosts: "{{ groups.oo_masters | join(' ')}}"
  19. roles:
  20. # TODO: this is currently required in order to schedule pods onto the masters, but
  21. # should be moved into components once nodes are using dynamic config
  22. - role: openshift_sdn
  23. - role: openshift_project_request_template
  24. when: openshift_project_request_template_manage
  25. - role: openshift_examples
  26. when: openshift_install_examples | default(true) | bool
  27. - role: openshift_hosted_templates
  28. - role: openshift_manageiq
  29. when: openshift_use_manageiq | default(true) | bool
  30. - role: cockpit
  31. when:
  32. - not openshift_is_atomic | bool
  33. - openshift_deployment_type == 'openshift-enterprise'
  34. - osm_use_cockpit is undefined or osm_use_cockpit | bool
  35. - (openshift_deployment_subtype | default('')) != 'registry'
  36. - role: flannel_register
  37. when: openshift_use_flannel | default(false) | bool
  38. - name: Master Additional Install Checkpoint End
  39. hosts: all
  40. gather_facts: false
  41. tasks:
  42. - name: Set Master Additional install 'Complete'
  43. run_once: true
  44. set_stats:
  45. data:
  46. installer_phase_master_additional:
  47. status: "Complete"
  48. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"