'Traefik TCP service + routing

I'm having a hard time routing TCP traffic to a Pod with Traefik. This pod I'm trying to proxy is named "realtime" and namespaced under "default"

According to the doc provided by traefik, I have created the following

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
  name: realtime-tcp-route
  namespace: default
spec:
  routes:
    - match: HostSNI(`subdomain.hostname.com`)
      services:
        - name: realtime
          port: 3002

According to the traefik dashboard, something is wrong: the service "default-realtime-tcp-ingress-542127811efa012038fd@kubernetescrd" does not exist, what am I doing wrong ?

Thanks

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source