Use TraefikService in Ingress

Hello everyone,

I am currently trying to use native kind Ingress (not IngressRoute) to stick to K8s default to access a internal service.

Is it possible to use kind Ingress and redirect to an internal traefik service such as api@internal or noop@internal?

When using IngressRoute I can define the service as follows (with kind TraefikService):

...
spec:
  routes:
  - ...
    services:
        - name: noop@internal
          kind: TraefikService

How to connect to this service using not a CRD but networking.k8s.io/v1/Ingress?

hello @fty4

The TraefikService is available to use with IngressRoute (CRD). unfortunately, there is no implementation to use together with Kubernetes Ingress. We should definitely consider improving documentation in that aspect.

Thanks,
Jakub

2 Likes