additional_config.yml 1.6 KB

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