I'm really stuck on that problem:
DBG github.com/traefik/traefik/v3/pkg/middlewares/snicheck/snicheck.go:43 > TLS options difference: SNI:default,...
This is my ingressRoute:
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: ingressName
spec:
entryPoints:
- websecure
routes:
- kind: Rule
match: Host(`<fqdn>`)
services:
- name: backendService
port: 5000
tls:
options:
name: test
secretName: secret-tls-wildcard
---
apiVersion: traefik.io/v1alpha1
kind: TLSOption
metadata:
name: test
spec:
clientAuth:
clientAuthType: RequestClientCert
This is the default tlsOptions:
apiVersion: traefik.io/v1alpha1
kind: TLSOption
metadata:
name: default
namespace: traefik-frontend
spec:
cipherSuites:
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
- TLS_AES_256_GCM_SHA384
- TLS_CHACHA20_POLY1305_SHA256
curvePreferences:
- CurveP521
- CurveP384
minVersion: VersionTLS12
I understand the ingress is not picking up the right tlsOption, but why? Can anybody help me out?
Thanks!