main.yml 1.9 KB

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