Kubernetes: Traefik IngressRoute

IngressRoute is Traefik CustomResourceDefinition (CRD). It is used to manage access external access to the services. Same function as Ingress, just different implementations.

Middleware is also Traefik CustomResourceDefinition (CRD). It is used to “tweak” your request and/or response.

Using Ingress, we apply the Middleware by adding it as an annotations.

Using IngressRoute, we define the Middleware as part of the spec.

First we need to create the Middleware:

Note: Only one Middleware per resource!

YAML

Then we apply it to Ingress:

The value format for the middleware annotation is <middleware-namespace>-<middleware-name>@kubernetescrd.

YAML

Now instead of creating Ingress, we also can achieve it with IngressRoute:

YAML

References:

  • https://doc.traefik.io/traefik/routing/providers/kubernetes-crd/
  • https://doc.traefik.io/traefik/routing/providers/kubernetes-ingress/#on-ingress
  • https://doc.traefik.io/traefik/routing/routers/#rule
  • https://doc.traefik.io/traefik/middlewares/http/overview/#available-http-middlewares
  • https://doc.traefik.io/traefik/providers/overview/#supported-providers