main.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ---
  2. - name: Set haproxy frontend port
  3. openshift_facts:
  4. role: loadbalancer
  5. local_facts:
  6. frontend_port: "{{ openshift_master_api_port | default(None) }}"
  7. - name: Set loadbalancer facts
  8. openshift_facts:
  9. role: loadbalancer
  10. local_facts:
  11. limit_nofile: "{{ openshift_loadbalancer_limit_nofile | default(None) }}"
  12. default_maxconn: "{{ openshift_loadbalancer_default_maxconn | default(None) }}"
  13. global_maxconn: "{{ openshift_loadbalancer_global_maxconn | default(None) }}"
  14. frontends:
  15. - name: atomic-openshift-api
  16. mode: tcp
  17. options:
  18. - tcplog
  19. binds:
  20. - "*:{{ openshift.loadbalancer.frontend_port }}"
  21. default_backend: atomic-openshift-api
  22. backends:
  23. - name: atomic-openshift-api
  24. mode: tcp
  25. option: tcplog
  26. balance: source
  27. servers: "{{ hostvars
  28. | oo_select_keys(groups['oo_masters'])
  29. | oo_haproxy_backend_masters(openshift.loadbalancer.frontend_port) }}"
  30. - name: Install haproxy
  31. action: "{{ ansible_pkg_mgr }} name=haproxy state=present"
  32. when: not openshift.common.is_containerized | bool
  33. - name: Configure systemd service directory for haproxy
  34. file:
  35. path: /etc/systemd/system/haproxy.service.d
  36. state: directory
  37. when: "'limit_nofile' in openshift.loadbalancer"
  38. - name: Configure the nofile limits for haproxy
  39. ini_file:
  40. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  41. section: Service
  42. option: LimitNOFILE
  43. value: "{{ openshift.loadbalancer.limit_nofile }}"
  44. when: "'limit_nofile' in openshift.loadbalancer"
  45. notify: restart haproxy
  46. register: nofile_limit_result
  47. - name: Reload systemd if needed
  48. command: systemctl daemon-reload
  49. when: nofile_limit_result | changed
  50. - name: Configure haproxy
  51. template:
  52. src: haproxy.cfg.j2
  53. dest: /etc/haproxy/haproxy.cfg
  54. owner: root
  55. group: root
  56. mode: 0644
  57. notify: restart haproxy
  58. - name: Enable and start haproxy
  59. service:
  60. name: haproxy
  61. state: started
  62. enabled: yes
  63. register: start_result
  64. - set_fact:
  65. haproxy_start_result_changed: "{{ start_result | changed }}"