traefik update

This commit is contained in:
Christian Lempa
2022-09-08 15:43:18 +02:00
parent 34f8ab714a
commit 712a867611
2 changed files with 34 additions and 11 deletions

View File

@@ -0,0 +1,22 @@
#
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: ingressroutetcp
# (Optional) Namespace
# namespace: your-namespace
# ---
spec:
entryPoints:
- web
- websecure
routes:
- match: HostSNI(`your-hostname-sni`)
priority: 10
services:
- name: your-service
port: 80
# (Optional) TLS Passthrough
# tls:
# passthrough: true
# ---