main.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---
  2. - name: setup firewall
  3. include: firewall.yml
  4. static: yes
  5. - name: Install haproxy
  6. package: name=haproxy state=present
  7. when: not openshift.common.is_containerized | bool
  8. - name: Pull haproxy image
  9. command: >
  10. docker pull {{ openshift.common.router_image }}:{{ openshift_image_tag }}
  11. when: openshift.common.is_containerized | bool
  12. - name: Create config directory for haproxy
  13. file:
  14. path: /etc/haproxy
  15. state: directory
  16. when: openshift.common.is_containerized | bool
  17. - name: Create the systemd unit files
  18. template:
  19. src: "haproxy.docker.service.j2"
  20. dest: "/etc/systemd/system/haproxy.service"
  21. when: openshift.common.is_containerized | bool
  22. notify: restart haproxy
  23. - name: Configure systemd service directory for haproxy
  24. file:
  25. path: /etc/systemd/system/haproxy.service.d
  26. state: directory
  27. when: not openshift.common.is_containerized | bool
  28. # Work around ini_file create option in 2.2 which defaults to no
  29. - name: Create limits.conf file
  30. file:
  31. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  32. state: touch
  33. mode: 0660
  34. owner: root
  35. group: root
  36. changed_when: false
  37. when: not openshift.common.is_containerized | bool
  38. - name: Configure the nofile limits for haproxy
  39. ini_file:
  40. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  41. section: Service
  42. option: LimitNOFILE
  43. value: "{{ openshift_loadbalancer_limit_nofile | default(100000) }}"
  44. notify: restart haproxy
  45. when: not openshift.common.is_containerized | bool
  46. - name: Configure haproxy
  47. template:
  48. src: haproxy.cfg.j2
  49. dest: /etc/haproxy/haproxy.cfg
  50. owner: root
  51. group: root
  52. mode: 0644
  53. notify: restart haproxy
  54. - name: Enable and start haproxy
  55. systemd:
  56. name: haproxy
  57. state: started
  58. enabled: yes
  59. daemon_reload: yes
  60. register: start_result
  61. - set_fact:
  62. haproxy_start_result_changed: "{{ start_result | changed }}"