9brandon2.haproxy
haproxy
Install and configure haproxy on your system.
| GitHub | GitLab | Quality | Downloads | Version |
|---|---|---|---|---|
Example Playbook
This example is taken from molecule/default/converge.yml and is tested on each push, pull request and release.
---
- name: Converge
mode: tcp
hosts: all
become: yes
gather_facts: yes
roles:
- role: robertdebock.haproxy
haproxy_frontends:
- name: http
address: "*"
port: 80
default_backend: backend
- name: https
address: "*"
port: 443
default_backend: backend
ssl: yes
crts:
- /tmp/haproxy.keycrt
haproxy_backend_default_balance: roundrobin
haproxy_backends:
- name: backend
httpcheck: yes
balance: roundrobin
servers: "{{ groups['all'] }}"
port: 8080
options:
- check
The machine needs to be prepared. In CI this is done using molecule/default/prepare.yml:
---
- name: Prepare
hosts: all
become: yes
gather_facts: no
roles:
- role: robertdebock.bootstrap
- role: robertdebock.core_dependencies
- role: robertdebock.epel
- role: robertdebock.buildtools
- role: robertdebock.python_pip
- role: robertdebock.openssl
openssl_key_directory: /tmp
openssl_items:
- name: haproxy
common_name: "{{ ansible_fqdn }}"
# This role is applied to serve as a mock "backend" server. See `molecule/default/verify.yml`.
- role: robertdebock.httpd
httpd_port: 8080
Also see a full explanation and example on how to use these roles.
Role Variables
The default values for the variables are set in defaults/main.yml:
---
# defaults file for haproxy
# Configure stats in HAProxy?
haproxy_stats: yes
haproxy_stats_port: 1936
# Default setttings for HAProxy.
haproxy_retries: 3
haproxy_timeout_http_request: 10s
haproxy_timeout_connect: 10s
haproxy_timeout_client: 1m
haproxy_timeout_server: 1m
haproxy_timeout_http_keep_alive: 10s
haproxy_timeout_check: 10s
haproxy_maxconn: 3000
# A list of frontends and their properties.
# haproxy_frontends:
# - name: http
# address: "*"
# port: 80
# default_backend: backend
# - name: https
# address: "*"
# port: 443
# default_backend: backend
# ssl: yes
# crts:
# - /tmp/haproxy.keycrt
# haproxy_backend_default_balance: roundrobin
# haproxy_backends:
# - name: backend
# httpcheck: yes
# httpcheck_method: OPTIONS / HTTP/1.0
# balance: roundrobin
# servers: "{{ groups['all'] }}"
# port: 8443
# options:
# - check
# - ssl
# - verify none
Requirements
- pip packages listed in requirements.txt.
Status of used roles
The following roles are used to prepare a system. You can prepare your system in another way.
| Requirement | GitHub | GitLab |
|---|---|---|
| robertdebock.bootstrap | ||
| robertdebock.buildtools | ||
| robertdebock.core_dependencies | ||
| robertdebock.epel | ||
| robertdebock.httpd | ||
| robertdebock.openssl | ||
| robertdebock.python_pip |
Context
This role is a part of many compatible roles. Have a look at the documentation of these roles for further information.
Here is an overview of related roles:

Compatibility
This role has been tested on these container images:
| container | tags |
|---|---|
| el | 8 |
| debian | all |
| fedora | all |
| opensuse | all |
| ubuntu | all |
The minimum version of Ansible required is 2.10, tests have been done to:
- The previous version.
- The current version.
- The development version.
Exceptions
Some roles can't run on a specific distribution or version. Here are some exceptions.
| variation | reason |
|---|---|
| amazonlinux:1 | /etc/init.d/haproxy: line 17: /etc/sysconfig/network: No such file or directory |
| ubuntu:xenial | Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 |
If you find issues, please register them in GitHub
License
Apache-2.0
Author Information
Please consider sponsoring me.
