Hello,
We have deployed a IngressRouteTCP and within the traefik UI the TCP routers are showing as running fine, however the services are failing. We have just configured this to be the same as a standard IngressRoute would connect to a backend service. Are we missing something
apiVersion: v1
kind: Service
metadata:
name: awesome-service
namespace: foo
spec:
ports:
- name: port-https
port: 1234
protocol: TCP
selector:
name: awesome-app
sessionAffinity: None
type: ClusterIP
---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: ingress-route-1234
namespace: foo
spec:
routes:
- kind: Rule
match: HostSNI(`awesome-app.XXXXXXXXXX.com`)
services:
- kind: Service
name: awesome-service
namespace: foo
port: 1234
tls:
passthrough: true
Thanks