HAProxy Enterprise Documentation 2.0r1

Docker

The HAProxy Enterprise Docker image lets you run the load balancer as a container.

Install the HAProxy Enterprise Docker image

The haproxy-enterprise Docker image hosts HAProxy Enterprise and the HAProxy Data Plane API. Follow these steps to install it:

  1. Log into the hapee-registry.haproxy.com Docker registry using your HAProxy Enterprise license key as both the username and password. If you do not have a key, get one by registering and requesting a free trial of HAProxy Enterprise at https://www.haproxy.com/downloads/hapee-trial/.

    $ sudo docker login https://hapee-registry.haproxy.com
  2. Pull the HAProxy Enterprise image.

    $ sudo docker pull hapee-registry.haproxy.com/haproxy-enterprise:2.0r1
  3. Create an HAProxy Enterprise configuration file (i.e. hapee-lb.cfg) that defines your load balancer settings.

  4. Start the Docker container, referencing the directory containing your configuration file as a volume by using the -v flag.

    $ sudo docker run \
        --name hapee-2.0 \
        -d \
        -p 80:80 \
        -p 443:443 \
        -p 5555:5555 \
        -v $(pwd):/etc/hapee-2.0  \
        --restart=unless-stopped \
        hapee-registry.haproxy.com/haproxy-enterprise:2.0r1

    The Data Plane API listens at port 5555. However, you must include a userlist section in your configuration to set up the Basic authentication credentials to use when calling the API.

    userlist hapee-dataplaneapi
       user admin insecure-password adminpwd

    Then you can verify that the API is working by calling the info function:

    $ curl -X GET --user admin:adminpwd http://localhost:5555/v2/info
    
    {"api":{"build_date":"2021-06-01T21:18:15.000Z","version":"v2.3.2-ee2 8fdcfba"},"system":{}}

Reload the services

When you change your hapee-lb.cfg configuration file, you will need to reload the service for the changes to take effect. We use s6-overlay to run HAProxy Enterprise and the HAProxy Data Plane API as services.

  1. Make sure that the following line is included in the global section of your HAProxy Enterprise configuration file. It ensures that you can perform a hitless reload, which means no traffic is dropped.

    global
       stats socket /var/run/hapee-2.0/hapee-lb.sock user hapee-lb group hapee mode 660 level admin expose-fd listeners
  2. Reload the HAProxy Enterprise process with this command:

    $ sudo docker exec hapee-2.0 s6-svc -2 /var/run/s6/services/haproxy

    You can also perform a hard restart by using this command:

    $ docker exec hapee-2.0 s6-svc -t /var/run/s6/services/haproxy

    To restart the Data Plane API, use this command:

    $ sudo docker exec hapee-2.0 s6-svc -t /var/run/s6/services/dataplaneapi

Installing with a custom Docker file

To install a modified HAProxy Enterprise environment, create a custom Docker file. Specify the desired HAProxy Enterprise base image as in the following example, which specifies version 2.0r1:

FROM hapee-registry.haproxy.com/haproxy-enterprise:2.0r1

Then add any further Dockerfile commands as needed.

The following example Dockerfile builds a HAProxy Enterprise version 2.0r1 image that includes a custom set of tools. The custom tool installation script, install_mytools-4.3.sh, must reside in the current directory.

FROM hapee-registry.haproxy.com/haproxy-enterprise:2.0r1

# install internal tools
WORKDIR /tmp
ARG mytools_version="4.3"
COPY install_mytools-"$mytools_version".sh .
RUN  /tmp/install_mytools-"$mytools_version".sh

Next up

Kubernetes