main.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. when: haproxy_limit_nofile is defined
  10. - name: Configure the nofile limits for haproxy
  11. ini_file:
  12. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  13. section: Service
  14. option: LimitNOFILE
  15. value: "{{ haproxy_limit_nofile }}"
  16. when: haproxy_limit_nofile is defined
  17. notify: restart haproxy
  18. register: nofile_limit_result
  19. - name: Reload systemd if needed
  20. command: systemctl daemon-reload
  21. when: nofile_limit_result | changed
  22. - name: Configure haproxy
  23. template:
  24. src: haproxy.cfg.j2
  25. dest: /etc/haproxy/haproxy.cfg
  26. owner: root
  27. group: root
  28. mode: 0644
  29. notify: restart haproxy
  30. - name: Enable and start haproxy
  31. service:
  32. name: haproxy
  33. state: started
  34. enabled: yes
  35. register: start_result
  36. - set_fact:
  37. haproxy_start_result_changed: "{{ start_result | changed }}"