additional_config.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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: configure vsphere svc account
  42. hosts: oo_first_master
  43. tasks:
  44. - import_role:
  45. name: openshift_cloud_provider
  46. tasks_from: vsphere-svc.yml
  47. when:
  48. - openshift_cloudprovider_kind is defined
  49. - openshift_cloudprovider_kind == 'vsphere'
  50. - openshift_version | version_compare('3.9', '>=')
  51. - name: update vsphere provider master config
  52. hosts: oo_masters_to_config
  53. tasks:
  54. - import_role:
  55. name: openshift_cloud_provider
  56. tasks_from: update-vsphere.yml
  57. when:
  58. - openshift_cloudprovider_kind is defined
  59. - openshift_cloudprovider_kind == 'vsphere'
  60. - name: Master Additional Install Checkpoint End
  61. hosts: all
  62. gather_facts: false
  63. tasks:
  64. - name: Set Master Additional install 'Complete'
  65. run_once: true
  66. set_stats:
  67. data:
  68. installer_phase_master_additional:
  69. status: "Complete"
  70. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"