additional_config.yml 1.7 KB

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