additional_config.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_cluster_autoscaler
  31. when: openshift_cluster_autoscaler_deploy | default(false) | bool
  32. - role: openshift_hosted_templates
  33. - role: openshift_manageiq
  34. when: openshift_use_manageiq | default(true) | bool
  35. - role: cockpit
  36. when:
  37. - not openshift_is_atomic | bool
  38. - openshift_deployment_type == 'openshift-enterprise'
  39. - osm_use_cockpit is undefined or osm_use_cockpit | bool
  40. - (openshift_deployment_subtype | default('')) != 'registry'
  41. - role: flannel_register
  42. when: openshift_use_flannel | default(false) | bool
  43. - name: configure vsphere svc account
  44. hosts: oo_first_master
  45. tasks:
  46. - import_role:
  47. name: openshift_cloud_provider
  48. tasks_from: vsphere-svc.yml
  49. when:
  50. - openshift_cloudprovider_kind is defined
  51. - openshift_cloudprovider_kind == 'vsphere'
  52. - openshift_version is version('3.9', '>=')
  53. - name: update vsphere provider master config
  54. hosts: oo_masters_to_config
  55. tasks:
  56. - import_role:
  57. name: openshift_cloud_provider
  58. tasks_from: update-vsphere.yml
  59. when:
  60. - openshift_cloudprovider_kind is defined
  61. - openshift_cloudprovider_kind == 'vsphere'
  62. - name: Master Additional Install Checkpoint End
  63. hosts: all
  64. gather_facts: false
  65. tasks:
  66. - name: Set Master Additional install 'Complete'
  67. run_once: true
  68. set_stats:
  69. data:
  70. installer_phase_master_additional:
  71. status: "Complete"
  72. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"