devops-coop / ansible-haproxy

Installs and configure HAProxy
Apache License 2.0
96 stars 97 forks source link
ansible haproxy

haproxy

Installs and configures HAProxy 1.5.

Versions

WARNING: This is the README for the master branch, which tracks the development of version 2 and targets Ansible 2.x. This branch is under active development and will include breaking changes.

The last release in the 1.x series is 1.2.0.

Features

Role Variables

See vars/main.yml for a complete list of configurable .

Example

- hosts: loadbalancers
  roles:
     - role: haproxy
       haproxy_frontends:
       - name: 'fe-mysupersite'
         ip: '123.123.123.120'
         port: '80'
         maxconn: '1000'
         default_backend: 'be-mysupersite'
       haproxy_backends:
       - name: 'be-mysupersite'
         description: 'mysupersite is really cool'
         servers:
           - name: 'be-mysupersite-01'
             ip: '192.168.1.100'

License

Apache v2