example.ingressroutetcp.yaml 653 B

123456789101112131415161718192021
  1. ---
  2. # --> (Example) Create an IngressRouteTCP for your service...
  3. # apiVersion: traefik.io/v1alpha1
  4. # kind: IngressRouteTCP
  5. # metadata:
  6. # name: your-ingressroutetcp # <-- Replace with your IngressRouteTCP name
  7. # namespace: your-namespace # <-- Replace with your namespace
  8. # spec:
  9. # entryPoints:
  10. # - web
  11. # - websecure
  12. # routes:
  13. # - match: HostSNI(`your-sni`) # <-- Replace with your SNI
  14. # priority: 10 # <-- (Optional) change rule priority
  15. # services:
  16. # - name: your-service # <-- Replace with your service name
  17. # port: 80
  18. # --> (Optional) Enable TLS Passthrough
  19. # tls:
  20. # passthrough: true
  21. # <--