additional_config.yml 1.9 KB

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