Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Traefik path based routing in kubernetes ingress not working as expected

I am trying to use the path based routing mechanism provided by Traefik ingress controller in Kubernetes but I have some issues with the url rewriting.

My [UPDATED] configuration is as follow

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    kubernetes.io/ingress.class: traefik
    traefik.ingress.kubernetes.io/auth-type: "basic"
    traefik.ingress.kubernetes.io/auth-tls-insecure: "true"
    traefik.ingress.kubernetes.io/frontend-entry-points: "http,https"
    traefik.ingress.kubernetes.io/app-root: "/"
    traefik.ingress.kubernetes.io/rule-type: "PathPrefixStrip"
    traefik.ingress.kubernetes.io/rewrite-target: "/"
  name: webapp-ingress
  namespace: my-company
spec:
  rules:
   - host: local-ubuntu
   - http:
      paths:
      - path: /
        backend:
          serviceName: webapp
          servicePort: 80
      - path: /db
        backend:
          serviceName: db-manager
          servicePort: 8081

The traffic is routed to the right services but the url is still prefixed with /db when I look at the log for the db-manager (kubernetes) service. What I would have expected with the PathPrefixStrip is that the traffic will be routed without the /db prefix to the container running the db-manager micro-service which is listening on / (http://db-manager:8081) on the backend side.

Am I missing something ? Is it supported by traefik or only nginx ? Thank you by advance for your feedback.

[EDIT]

To be more specific I observe the following with the current annotations discussed below

  • traefik.ingress.kubernetes.io/rule-type: "PathPrefixStrip"
  • traefik.ingress.kubernetes.io/rewrite-target: "/"

URL: http://local-ubuntu/db [OK] -> 200

Then other resources are loading but are pointing on the wrong base url

Example:

Resource URL is : http://local-ubuntu/public/css/bootstrap.min.css

But this should be : http://local-ubuntu/db/public/css/bootstrap.min.css (which works when I've tried manually)

I am not sure what I am missing here in the current configuration.

like image 923
Asa Avatar asked Jan 29 '19 01:01

Asa


3 Answers

Regarding the static contents not being served, the documentation states the following:

Use a *Strip matcher if your backend listens on the root path (/) but should be routeable on a specific prefix. For instance, PathPrefixStrip: /products would match /products but also /products/shoes and /products/shirts. Since the path is stripped prior to forwarding, your backend is expected to listen on /. If your backend is serving assets (e.g., images or Javascript files), chances are it must return properly constructed relative URLs. Continuing on the example, the backend should return /products/shoes/image.png (and not /images.png which Traefik would likely not be able to associate with the same backend). The X-Forwarded-Prefix header (available since Traefik 1.3) can be queried to build such URLs dynamically.

like image 82
Dzhuneyt Shaban Avatar answered Oct 24 '22 07:10

Dzhuneyt Shaban


Thank you very much for your help in this matter.

First of all I had to fix an issue regarding the formatting of the annotations in the yaml file.

All the instructions with traefik as a prefix need to be double quoted

Example :

  • traefik.ingress.kubernetes.io/rule-type: PathPrefixStrip [Not
    correct]
  • traefik.ingress.kubernetes.io/rule-type: "PathPrefixStrip"
    [correct]

In the first case none of the annotations were reflected in the ingress.

But I still cannot route properly the traffic. With the current configuration only the resource served on / is returned. None of the js, css or other resources are loaded. So I wonder if I need to use the traefik.frontend.redirect.regex instruction.

like image 24
Asa Avatar answered Oct 24 '22 07:10

Asa


Try with one of the following:

traefik.ingress.kubernetes.io/rule-type: "PathPrefixStrip"

traefik.ingress.kubernetes.io/rewrite-target: "/

They both achieve similar results, but they are different, and they have slightly different behavior.

I would read more on our documentation for the differences: (https://docs.traefik.io/v1.7/configuration/backends/kubernetes/#general-annotations)

As for your second issue:

Resource URL is : local-ubuntu/public/css/bootstrap.min.css

But this should be : local-ubuntu/db/public/css/bootstrap.min.css (which works when I've tried

You stripped that path from the request...your DB service never sees the DB prefix...How is it supposed to know to add them back in?

You need to set a root URL in your web application to handle the stripped path.

Once you do that, you may not even need to strip the path at all, and just leave it as is. If you cannot set a base URL for your application, you may not be able to use directories for routing, and may have to use subdomains instead.

like image 1
rafambbr Avatar answered Oct 24 '22 05:10

rafambbr