简体   繁体   中英

Traefik Route Prefix

I've configured an Ingress with config:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: nuclio-dashboard
  namespace: nuclio
spec:
  rules:
    - host: nuc.local
      http:
        paths:
          - path: /nuclio
            backend:
              serviceName: nuclio-dashboard
              servicePort: 8070

Not when I go to nuc.local/nuclio I'm getting a response but the page requests js and css files at:

http://nuc.local/assets/css/vendor-fc43143698.css Failed to load resource: the server responded with a status of 404 (Not Found)

I want every request mage from /nuclio to / to go to /nuclio .

How can I accomplish this?

Assuming you're using Traefik v2, you need something like a redirectRegex Middleware , for traefik to do this. I think it would go like this.

---
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
  name: test-redirectregex
  namespace: nuclio
spec:
  redirectRegex:
    regex: ^http://nuc.local/?$$
    replacement: http://nuc.local/nuclio/
    permanent: true
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    traefik.ingress.kubernetes.io/router.middlewares: nuclio-test-redirectregex@kubernetescrd
  name: nuclio-dashboard
  namespace: nuclio
spec:
  rules:
    - host: nuc.local
      http:
        paths:
          - path: /
            backend:
              serviceName: nuclio-dashboard
              servicePort: 8070

Another take on it could be to use the replacePath Middleware , which would then look like this:

---
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
  name: test-replacepath
  namespace: nuclio
spec:
  replacePath:
    path: /nclio
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    traefik.ingress.kubernetes.io/router.middlewares: nuclio-test-replacepath@kubernetescrd
  name: nuclio-dashboard
  namespace: nuclio
spec:
  rules:
    - host: nuc.local
      http:
        paths:
          - path: /
            backend:
              serviceName: nuclio-dashboard
              servicePort: 8070

Let us know how that goes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM