main.yml 1.9 KB

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