docs/docker-for-ibm-cloud/load-balancer.md

9.0 KiB

description keywords title
Load Balancer IBM Cloud load balancer Load balance Docker EE for IBM Cloud clusters

Docker Enterprise Edition (EE) for IBM Cloud deploys three load balancers to each cluster so that you can:

The load balancers are preconfigured for you. Do not change the configurations.

Manager load balancer

The manager load balancer is preconfigured to connect your local Docker client, your cluster, bx d4ic commands, and Docker EE UCP.

Ports:

  • UCP is listening on load balancer port 443.
  • Agent traffic on the manager nodes is on port 56443.

Use the manager load balancer URL to access Docker EE UCP.

  1. Get your cluster's load balancer URL for UCP:

    $ bx d4ic list --sl-user user.name.1234567 --sl-api-key api_key
    
  2. In your browser, navigate to the URL and log in.

    Tip: Your user name is admin or the user name that your admin created for you. You got the password when you created the cluster or when your admin created your credentials.

DTR load balancer

The DTR load balancer is used to access DTR and run registry commands such as docker push or docker pull.

The DTR load balancer exposes the following ports:

  • 443 for HTTPS
  • 80 for HTTP

Use the load balancer to access DTR.

  1. Get the name of the cluster for which you want to access DTR:

    $ bx d4ic list --sl-user user.name.1234567 --sl-api-key api_key
    
  2. Get the DTR URL for the cluster:

    $ bx d4ic show --swarm-name my_swarm --sl-user user.name.1234567 --sl-api-key api_key
    
  3. In your browser, navigate to the URL and log in. UCP and DTR share the same login.

    Tip: Your user name is admin or the user name that your admin created for you. You got the password when you created the cluster or when your admin created your credentials.

Service load balancer

When you create a service, any ports that are opened with --publish or -p are automatically published through the load balancer.

Reserved ports

Several ports are reserved and cannot be used to expose services:

  • 56501 for the service load balancer management.
  • 443 for the UCP web UI.
  • 56443 for the Agent.

For example:

$ docker service create --name nginx -p 80:80 nginx

This opens up port 80 on the load balancer, and directs any traffic on that port to your service.

Note: 10 ports on the service load balancer

Each cluster's service load balancer can have 10 ports opened. If you create new services or update a service to publish it on a port but already used 10 ports, new ports are not added and the service cannot be accessed through the load balancer. If you need more than 10 ports, you can explore alternative solutions such as UCP domain names or Træfik. You can also create another cluster.

To learn more about general swarm networking, see the Docker container networking and Manage swarm service networks guides.

Access a service with the service load balancer

Get a publicly accessible HTTP URL for your app by publishing a Docker service on an unused port. For secure HTTPS URLs, see Services with SSL certificates.

  1. Connect to your Docker EE for IBM Cloud swarm. Navigate to the directory where you downloaded the UCP credentials and run the script. For example:

    $ cd filepath/to/certificate/repo && source env.sh
    
  2. Create the service that you want to expose by using the docker service create command. For example:

    $ docker service create --name nginx-test \
      --publish 8080:80 \
      --replicas 3 \
      nginx
    
  3. List the name of the cluster such as mycluster, and then use it to show the service (svc) load balancer URL:

    $ bx d4ic list --sl-user user.name.1234567 --sl-api-key api_key
    $ bx d4ic show --swarm-name mycluster --sl-user user.name.1234567 --sl-api-key api_key
    
  4. To access the service that you exposed on a port, use the service (svc) load balancer URL that you retrieved. The load balancer might need a few minutes to update. For example:

    $ curl mycluster-svc-1234567-wdc07.lb.bluemix.net:8080/
    ...
    <title>Welcome to nginx!</title>
    ...
    

Services with SSL certificates

You can publicly expose your app securely with an HTTPS URL. Use IBM Cloud infrastructure SSL Certificates to authenticate and encrypt online transactions that are transmitted through your cluster's load balancer.

When you create a certificate for your domain, specify the Common Name. When you create the Docker service, include the certificate common name to use the certificate for SSL termination for your service.

Learn more about the labels for SSL termination and health check paths, then follow along with an example command to expose a service on HTTPS.

Labels for SSL termination and health check paths

When you create the Docker service to expose your app with an HTTPS URL, you need to specify two labels that:

  • Specify your SSL certificate's Common Name.
  • Set the health check path.

Start a service that uses SSL termination: Start a service that listens on ports that you specify. The service load balancer provides SSL termination on ports that use your SSL certificate's common name, com.ibm.d4ic.lb.cert=certificate-common-name, when you create the service.

In the label, you must append @HTTPS:port to list the ports that you want to publish.

For example:

$ docker service create --name name \
...
--label com.ibm.d4ic.lb.cert=certificate-common-name@HTTPS:444
...

To specify other or multiple ports, append them as follows:

  • Links HTTPS to port 444: --label com.ibm.d4ic.lb.cert=certificate-common-name@HTTPS:444
  • Links HTTPS to ports 444 and 8080: --label com.ibm.d4ic.lb.cert=certificate-common-name@HTTPS:444,HTTPS:8080

Set a health check path when using SSL termination: By default, the service load balancer sets a health check path to /. If the service cannot respond with a 200 message to a GET request on the / path, then you must include a health monitor path label when you create the service. For example:

--label com.ibm.d4ic.healthcheck.path=/demo/hello@444

When the route is published, the health check is set to the path that you specify in the label. Choose a path that can respond with a 200 message to a GET request.

Example command for HTTPS

The following docker service create command expands on the example from the previous section to create a demo service that is published on a different port than the default and includes a health check path.

Before you begin:

  1. Log in to IBM Cloud infrastructure.

  2. Add or an import an SSL certificate to use. In your infrastructure account, you can access the page from Security > SSL > Certificates.

  3. Note the certificate Common Name.

Steps:

  1. Connect to your Docker EE for IBM Cloud swarm. Navigate to the directory where you downloaded the UCP credentials and run the script. For example:

    $ cd filepath/to/certificate/repo && source env.
    
  2. Create the service that you want to expose by using the docker service create command. For example:

    $ docker service create --name nginx-test \
      --publish 444:80 \
      --replicas 3 \
      --label com.ibm.d4ic.lb.cert=certificate-common-name@HTTPS:444 \
      --label com.ibm.d4ic.healthcheck.path=/@444 \
      nginx
    
  3. List the name of the cluster such as mycluster, and then use it to show the service (svc) load balancer URL:

    $ bx d4ic list --sl-user user.name.1234567 --sl-api-key api_key
    $ bx d4ic show --swarm-name mycluster --sl-user user.name.1234567 --sl-api-key api_key
    
  4. To access the service that you exposed on a port, use the service (svc) load balancer URL that you retrieved. The load balancer might need a few minutes to update. For example:

    $ curl --cacert https://mycluster-svc-1234567-wdc07.lb.bluemix.net:444
    ...
    <title>Welcome to nginx!</title>
    ...