Skip to content

Cometari

Case Studies

Container orchestration with Docker Swarm and Traefik

In the last few months, there were some rumors in regards to Docker Swarm and the future of that technology. However, based on the news published recently we can assume that Docker Swarm will be still supported. That's why I thought that it will be valuable for the community to present how you can use Docker Swarm to build a fully-fledged environment.

I don’t tell you that you have to use Docker Swarm. This is one of the options you choose among a few available orchestration tools. You can leverage Docker Swarm by installing Traefik that is an open-source router for microservice architectures and that article shows how to use those tools together.

What will you learn reading that article:

  • how to install and configure Traefik 2 that is absolutely different compared to version 1
  • how to deploy multi-tier application stack that includes Traefik that expose services to the internet, web server e.g. Nginx and backend we will go through canary deployments using a built-in feature in Traefik.

Prerequisites:

  • up and running Docker Swarm cluster that has a public IP address. I recommend building your lab using infrastructure that is reachable via public IP addresses. It is even in accordance with 12 factor app manifest that all environments should be as similar as is possible.
  • a possibility to create DNS entries for any domain; we will use entries, technically speaking URLS to access our Lab environment

Traefik 2.x key features

Before moving forward, a few words what is it Traefik? This is a router that can be installed on the top of your infrastructure and expose services to your users. Each incoming request that is being sent to your infrastructure can be caught by Traefik and routed accordingly to the specific service. Typically, service is represented by a few instances of running containers. Despite the fact that Traefik can listen on port 80 and 443 (or even more ports) that are used for HTTP and HTTPS it is not web server as it is Nginx or Apache. Basically speaking Traefik catches a request, processes the request and route the request deeper to your infrastructure. By the end of 2019, there was a release of Traefik 2 that introduces a few crucial changes. The most important is to change the naming of key features of the system. If you are familiar with Traefik v.1 you probably know to name such as fronted, backend and rules.

In V 2 we have:

  • router that replaced fronted
  • service that replaced backend
  • middleware that replaced rules

One of the features that have been added in the version is canary deployment. That is, in fact, routing incoming traffic between services based on the specified weights in a config file.

One of the common options is using CLI and pass the configuration through arguments.

Please also note that configuration can be split into two different things:

  • fully dynamic routing configuration
  • and static configuration that can be referred to as static

traefik-config-overview

In order to simplify that you can think about the static configuration that is not changed very often. Those are providers configuration (Docker, Kubernetes) and entrypoints. Those parameters are applied while Traefik is starting. Everything that relies on routing can be treated as dynamic and can be hot reloaded.

However, in my example configuration, I used dedicated configuration files to show a different approach. I also defined the directory with flag watch enabled. So each update to the files listed in this directory should automatically be reloaded without request interruption or connection loss.

See the definition of a docker stack file that runs Traefik.


As you noticed I added a health check that is built-in feature into Traefik that is accessible via /ping endpoint. Swarm takes care of keeping Traefik in a healthy condition and in case of failing health check the process should be restarted.

Configuration of service through Labels

The simplicity of Traefik is the configuration and labels that I like the most. You can configure the behavior of Traefik adding specific labels on a container level and deploy the stack file.

Let’s go through the example configuration of Traefik (stack-tr-main.yml):

  • traefik.enable=true — we have to enable Traefik because in a static file we disabled to expose service automatically
  • traefik.http.routers.t.rule=Host(traefik.labs.cometari.eu) — tell to Traefik to create router called ‘t’ catch all incoming requests specified in Host rules based on HTTP HOST header.
  • traefik.http.routers.t.service=api@internal — the router ‘t’should forward the request to service api@internal. This is a specific example because we are going to expose Traefik.
  • traefik.http.routers.t.tls.certresolver=le — lets’ use CertResolver called LE that has been defined in a static file.
  • traefik.http.routers.t.entrypoints=websecure — router ‘t’ should be available via websecure entrypoint
  • traefik.http.routers.t.middlewares=authtraefik — lets assign middleware that is defined in a dynamic files. It just enabling basic auth for that service
  • traefik.http.middlewares.authtraefik.basicauth.users=admin:<pass> — and here are credentials, remember to use bcrypt for generating password
  • traefik.http.routers.http-catchall.rule=hostregexp({host:.+}) — lets’ catch-all requests and redirect them to HTTPS. Please note that we have just enabled a new router called http-catchall.
  • traefik.http.routers.http-catchall.middlewares=redirect-to-https — we assigned the middleware called redirect-to-https for the newly created router
  • traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https — here is a redirection from HTTP to HTTPS.

Please refer to GIST — it should be more readable for you. I also added there a few comments.

There are many more configuration parameters that you can use and set in a label section, all of them are listed in Traefik’s documentation. However, you should know what are routers, services, and middleware and how easily you create them in a stack file.

Main configuration file with static settings

The main configuration file includes parameters that are set on startup. They can not be modified without restarting Traefik. I added more providers such as Swarm, File and Consul catalog. In your case, you can remove the consul catalog. As you can see I also defined directory /conf.d where I added additional files that can be dynamically updated without restarting Traefik.

Those files are stored in Docker Swarm Config and are versioned in stack files. Referring to Kubernetes you can use ConfigMaps to keep those files. You can see that in another article when I present how to work with Traefik and Kubernetes, literally speaking with K3S cluster.

I also created Entrypoints for HTTP, HTTPS, /ping and /metrics. There is also added LetsEncrypt configuration — you can consider using a staging environment for testing purposes.


See the GIST with that configuration file.

Additional configuration files that are dynamic

  • tls.toml — additional configuration in order to have better marks for SSL certificates.
  • routers.toml — you can also use Traefik to route traffic for VM’s running in an old way, I mean not in a container. Here you can find an example of how to manage that. It can be useful if you are in the process of migrating from the infrastructure managed in the traditional way to container.
  • middlewares.toml — here are middleware defined that can be attached in sections where you define routers

SSL Certificates and high availability

Due to the fact, we are in a containers world and each container should be immutable we should not have any persistence storage in our stack. However, in order to take advantage of Let’s Encrypt that is built-in into Traefik we need to store in a file our certificates. That’s why in an example configuration we defined volumes where a file with certificates will be stored. In that case, it is difficult to scale up horizontally Traefik to provide high availability because another instance of Traefik needs to have access to the file stored on a local volume.

If you need HA you can consider Traefik EE that has already built-in that feature or you can try to configure Cert Manager and provide HA based on that.

An example application stack

It is a simple application stack that consists of Nginx and a simple NodeJs backend. It is nothing sophisticated but gives you an overview that you can build a simple application even on Docker Swarm and Traefik can empower your application stack.

an-example-app-stack

Here is the stack file:


See the original Gist

Again, referring to the section label in service called fronted we can say that Traefik is going to do the following

  • enable exposing that service
  • create a router called myapp
  • catch all request based on the given host
  • enable both entrypoints web and websecure Works like a charm and seems that it is pretty straightforward :)

Canary deployments

In order to understand canary deployment, we have to understand the difference between release and deployments. See the diagram below. Technically speaking we can a few versions of our service deployed to our infrastructure. That means that deployment brings new code to the production environment but there is no production traffic yet.

canary-1

Once the new deployment has been successfully tested and we ensured that a new version has no impact on our users we can decide to release the new version. It means that release brings live traffic to deployment — to the newest version of the application.

canary-2

Canary deployments need some time to fully release and switch to the newest version of the entire traffic and definitely should be automated.

The service definition for canary deployment

In order to proceed with that approach, we have to create a weighted service and balance incoming traffic between those two services.

See the example of that:


See the original GIST

We created two Swarm services:

  • app1 — use docker image tagged as v1
  • app2 — use docker image tagged as v2

The application is available through an example URL https://canary.labs.cometari.com We have defined that weights are defined in a separate configuration file, that line is responsible for that:

traefik.http.routers.app1.service=canary@file

Traefik will read the configuration from that file that is a part of dynamically updated. configuration:


Then in the service APP1, we have added following line:

traefik.http.services.app1_svc.loadbalancer.server.port=3000

Going forward in the service APP2, we had another line

traefik.http.services.app2_svc.loadbalancer.server.port=3000

That means that Traefik is going to balance incoming requests between those two services app1svc and app2svc. It will use weights defined in the file canary@file that is presented a few lines above. The entire source code of that is available on my Github repo:

https://github.com/jakubhajek/traefik-swarm-mastery

The entire workflow I presented during one of the Traefik online meetups, the link is below:

You don't’ have an influence on what applications (v1 or v2) your request is going to reach. However, if you would like to allow your testers to perform smoke tests on v2, you create middleware that adds a specific header, for example:

X-Canary-Header: “knock-knock”

then you have to assign that middleware to your new routing rule and use the following statement:

Host(`canary.labs.cometari.eu`) && HeadersRegexp(`X-Canary-Header`, `knock-knock`)

Make sure also that you assigned middleware that you have created.

That means that we are create routing rules using the HTTP HOST header and also HeadersRegexp. It works perfectly, just remember to add an HTTP header to your request that meets the criteria defined in the middleware.

I fully tested that approach with Traefik and its KubernetesCRD approach. It works like a charm!

Summary

Traefik is a great tool and connected with Docker Swarm can significantly empower your stack and the entire infrastructure. It provides a few important features:

  • Auto-discovery can find and expose services to your users
  • There are multiple ways to configure Traefik, there is no ready to use configuration, you can use file but also CLI arguments.
  • Middlewares provides the possibility to customize your routes
  • It integrates with every major cluster technology e.g. Swarm, Kubernetes
  • Lets Encrypt is integrated so managing SSL certificates is easy. However, in the case of HA, you have to consider developing a solution using e.g. Cert Manager.
  • Metrics are prepared in open metrics format so you can use Prometheus to create a dashboard
  • Tracing is also available
  • Rolling out releases thanks to the canary deployment
  • Mirroring is also available so you can duplicate requests and route them to a different service.