additional_config.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. openshift_master_ha: "{{ groups.oo_masters | length > 1 }}"
  19. omc_cluster_hosts: "{{ groups.oo_masters | join(' ')}}"
  20. roles:
  21. - role: openshift_master_cluster
  22. when: openshift_master_ha | bool and openshift.master.cluster_method == "pacemaker"
  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. registry_url: "{{ openshift.master.registry_url }}"
  28. - role: openshift_hosted_templates
  29. registry_url: "{{ openshift.master.registry_url }}"
  30. - role: openshift_manageiq
  31. when: openshift_use_manageiq | default(true) | bool
  32. - role: cockpit
  33. when:
  34. - not openshift.common.is_atomic | bool
  35. - deployment_type == 'openshift-enterprise'
  36. - osm_use_cockpit is undefined or osm_use_cockpit | bool
  37. - openshift.common.deployment_subtype != 'registry'
  38. - role: flannel_register
  39. when: openshift_use_flannel | default(false) | bool
  40. - name: Master Additional Install Checkpoint End
  41. hosts: all
  42. gather_facts: false
  43. tasks:
  44. - name: Set Master Additional install 'Complete'
  45. run_once: true
  46. set_stats:
  47. data:
  48. installer_phase_master_additional:
  49. status: "Complete"
  50. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"