main.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. - name: Configure haproxy
  27. template:
  28. src: haproxy.cfg.j2
  29. dest: /etc/haproxy/haproxy.cfg
  30. owner: root
  31. group: root
  32. mode: 0644
  33. notify: restart haproxy
  34. - name: Enable and start haproxy
  35. systemd:
  36. name: haproxy
  37. state: started
  38. enabled: yes
  39. daemon_reload: yes
  40. register: start_result
  41. - set_fact:
  42. haproxy_start_result_changed: "{{ start_result | changed }}"