Forward auth to kubernetes service from outside of kubernetes instance of traefik

I’m running Traefik outside Kubernetes. I’m trying to setup forward auth to the service running in Kubernetes, via the KubernetesCRD’s.

Traefik is not able to resolve service.blablsbl.svc.cluster.local Causing internal server error.

Is it possible to make it to do it somehow?

Hello,

This name is only valid from inside Kubernetes, it means nothing outside. If you want to reach it from the outside you will need to expose it through an Ingress or Gateway, and then refer to it via a name that is resolvable, ie either an IP address or a dedicated DNS entry.

I hope this helps.

Barney