main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ---
  2. - fail: msg="Cannot use containerized=true for load balancer hosts."
  3. when: openshift.common.is_containerized | bool
  4. - name: Install haproxy
  5. package: name=haproxy state=present
  6. - name: Configure systemd service directory for haproxy
  7. file:
  8. path: /etc/systemd/system/haproxy.service.d
  9. state: directory
  10. # Work around ini_file create option in 2.2 which defaults to no
  11. - name: Create limits.conf file
  12. file:
  13. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  14. state: touch
  15. mode: 0660
  16. owner: root
  17. group: root
  18. changed_when: false
  19. - name: Configure the nofile limits for haproxy
  20. ini_file:
  21. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  22. section: Service
  23. option: LimitNOFILE
  24. value: "{{ openshift_loadbalancer_limit_nofile | default(100000) }}"
  25. notify: restart haproxy
  26. register: nofile_limit_result
  27. - name: Reload systemd if needed
  28. command: systemctl daemon-reload
  29. when: nofile_limit_result | changed
  30. - name: Configure haproxy
  31. template:
  32. src: haproxy.cfg.j2
  33. dest: /etc/haproxy/haproxy.cfg
  34. owner: root
  35. group: root
  36. mode: 0644
  37. notify: restart haproxy
  38. - name: Enable and start haproxy
  39. service:
  40. name: haproxy
  41. state: started
  42. enabled: yes
  43. register: start_result
  44. - set_fact:
  45. haproxy_start_result_changed: "{{ start_result | changed }}"