Hey,
I am using helm to install traeftik to my aws eks using namespace traefik-system.
Applying a IngressRoute for the dasboard in the same namespace does work.
But now I need to connect a service from the default namespace to traefik.
In the dasboard I get "the service does not exists" ...
I have created the IngressRouteTCP in the default namespace (so in the namespace the service exists)
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: mosquitto
spec:
entryPoints:
- mqtts
routes:
- match: HostSNI(`*`)
kind: Rule
services:
- name: mosquitto
tls: {}
And the service
apiVersion: v1
kind: Service
metadata:
name: mosquitto
namespace: default
spec:
ports:
- name: mqtt
port: 1883
protocol: TCP
targetPort: 1883