config.yml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. - name: Load Balancer Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set load balancer install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_loadbalancer:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: Configure firewall and docker for load balancers
  14. hosts: oo_lb_to_config:!oo_masters_to_config:!oo_nodes_to_config
  15. vars:
  16. openshift_image_tag: "{{ hostvars[groups.oo_first_master.0].openshift_image_tag }}"
  17. roles:
  18. - role: os_firewall
  19. - role: openshift_docker
  20. when: openshift.common.is_containerized | default(False) | bool and not skip_docker_role | default(False) | bool
  21. - name: Configure load balancers
  22. hosts: oo_lb_to_config
  23. vars:
  24. openshift_loadbalancer_frontends: "{{ (openshift_master_api_port | default(8443)
  25. | oo_openshift_loadbalancer_frontends(hostvars | oo_select_keys(groups['oo_masters']),
  26. openshift_use_nuage | default(false),
  27. nuage_mon_rest_server_port | default(none)))
  28. + openshift_loadbalancer_additional_frontends | default([]) }}"
  29. openshift_loadbalancer_backends: "{{ (openshift_master_api_port | default(8443)
  30. | oo_openshift_loadbalancer_backends(hostvars | oo_select_keys(groups['oo_masters']),
  31. openshift_use_nuage | default(false),
  32. nuage_mon_rest_server_port | default(none)))
  33. + openshift_loadbalancer_additional_backends | default([]) }}"
  34. openshift_image_tag: "{{ hostvars[groups.oo_first_master.0].openshift_image_tag }}"
  35. roles:
  36. - role: openshift_loadbalancer
  37. - role: tuned
  38. - name: Load Balancer Install Checkpoint End
  39. hosts: all
  40. gather_facts: false
  41. tasks:
  42. - name: Set load balancer install 'Complete'
  43. run_once: true
  44. set_stats:
  45. data:
  46. installer_phase_loadbalancer:
  47. status: "Complete"
  48. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"