main.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. - name: Install haproxy
  3. action: "{{ ansible_pkg_mgr }} name=haproxy state=present"
  4. when: not openshift.common.is_containerized | bool
  5. - name: Configure systemd service directory for haproxy
  6. file:
  7. path: /etc/systemd/system/haproxy.service.d
  8. state: directory
  9. - name: Configure the nofile limits for haproxy
  10. ini_file:
  11. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  12. section: Service
  13. option: LimitNOFILE
  14. value: "{{ openshift_loadbalancer_limit_nofile | default(100000) }}"
  15. notify: restart haproxy
  16. register: nofile_limit_result
  17. - name: Reload systemd if needed
  18. command: systemctl daemon-reload
  19. when: nofile_limit_result | changed
  20. - name: Configure haproxy
  21. template:
  22. src: haproxy.cfg.j2
  23. dest: /etc/haproxy/haproxy.cfg
  24. owner: root
  25. group: root
  26. mode: 0644
  27. notify: restart haproxy
  28. - name: Enable and start haproxy
  29. service:
  30. name: haproxy
  31. state: started
  32. enabled: yes
  33. register: start_result
  34. - set_fact:
  35. haproxy_start_result_changed: "{{ start_result | changed }}"