Hi!
I have a Traefik installation via Helm chart in a Kubernetes cluster and I have created a TCP router through a IngressRouteTCP to route the TCP traffic to my TCP service.
IngressRouteTCP:
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: irtcp
namespace: apps
spec:
entryPoints:
- app
routes:
- match: HostSNI(`*`)
services:
- name: app-svc
port: 50000
I have created that router manually applying the IngressRouteTCP but now I need to know how I can create that IngressRouteTCP automatically through the Helm chart installation and I don't know what I need to add to the values.yaml or whatever.
Thanks in advance!