main.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. - fail: msg="Cannot use containerized=true for load balancer hosts."
  3. when: openshift.common.is_containerized | bool
  4. - name: Install haproxy
  5. action: "{{ ansible_pkg_mgr }} 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. - 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: "{{ openshift_loadbalancer_limit_nofile | default(100000) }}"
  16. notify: restart haproxy
  17. register: nofile_limit_result
  18. - name: Reload systemd if needed
  19. command: systemctl daemon-reload
  20. when: nofile_limit_result | changed
  21. - name: Configure haproxy
  22. template:
  23. src: haproxy.cfg.j2
  24. dest: /etc/haproxy/haproxy.cfg
  25. owner: root
  26. group: root
  27. mode: 0644
  28. notify: restart haproxy
  29. - name: Enable and start haproxy
  30. service:
  31. name: haproxy
  32. state: started
  33. enabled: yes
  34. register: start_result
  35. - set_fact:
  36. haproxy_start_result_changed: "{{ start_result | changed }}"