main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. - name: Fail if atomic
  3. fail:
  4. msg: "Load balancers on atomic host are no longer supported"
  5. when: openshift_is_atomic
  6. - name: setup firewall
  7. import_tasks: firewall.yml
  8. - name: Install haproxy
  9. package: name=haproxy state=present
  10. register: result
  11. until: result is succeeded
  12. - name: Configure systemd service directory for haproxy
  13. file:
  14. path: /etc/systemd/system/haproxy.service.d
  15. state: directory
  16. # Work around ini_file create option in 2.2 which defaults to no
  17. - name: Create limits.conf file
  18. file:
  19. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  20. state: touch
  21. mode: 0660
  22. owner: root
  23. group: root
  24. changed_when: false
  25. - name: Configure the nofile limits for haproxy
  26. ini_file:
  27. dest: /etc/systemd/system/haproxy.service.d/limits.conf
  28. section: Service
  29. option: LimitNOFILE
  30. value: "{{ openshift_loadbalancer_limit_nofile | default(100000) }}"
  31. notify: restart haproxy
  32. - name: Configure haproxy
  33. template:
  34. src: haproxy.cfg.j2
  35. dest: /etc/haproxy/haproxy.cfg
  36. owner: root
  37. group: root
  38. mode: 0644
  39. notify: restart haproxy
  40. - name: Enable and start haproxy
  41. systemd:
  42. name: haproxy
  43. state: started
  44. enabled: yes
  45. daemon_reload: yes
  46. register: start_result
  47. - set_fact:
  48. haproxy_start_result_changed: "{{ start_result is changed }}"