Web / Traefik Interview questions
Define an IngressRoute in Traefik?
IngressRoute is a Kubernetes Custom Resource Definition (CRD) provided by Traefik that lets you define routers, middlewares references, and TLS settings directly as native Kubernetes objects, instead of relying only on the standard Ingress resource and annotations.
It exposes Traefik-specific concepts, like weighted services and middleware chains, in a first-class way that plain Ingress annotations can't express cleanly.
apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: web-route spec: entryPoints: - websecure routes: - match: Host(`app.example.com`) kind: Rule services: - name: web-svc port: 80
More Related questions...