additional_config.yml 2.6 KB

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