Hi there,
I am migrating a kubernetes cluster from Nginx to traefik because we were having issues with Nginx hot reloads. Eveyrthing is going great and it is much more performance now.
My issue is exposing a TCP kubernetes service. It works well if I don't activate the --providers.kubernetesingress
, but if I activate it, it seems that the tcp requests get a 404 because it is not routed properly:
Not Found: HTTP status code 404; transport: received the unexpected content-type "text/plain; charset=utf-8"
This is my IngressRouteTCP
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: "buildkit"
spec:
entryPoints:
- buildkit
routes:
- match: HostSNI(`*`)
services:
- name: "buildkit"
namespace: okteto
port: 1234
is IngressRouteTCP incompatible with "providers.kubernetesingress"?