Refactor Kubernetes configuration to use Traefik for dashboard routing

This commit is contained in:
2024-07-15 20:35:36 +08:00
parent 16e5b73622
commit be2ea7fc74
6 changed files with 145 additions and 6 deletions
+17
View File
@@ -0,0 +1,17 @@
---
apiVersion: traefik.io/v1alpha1
kind: TLSOption
metadata:
name: default
namespace: default
spec:
minVersion: VersionTLS12
cipherSuites:
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 # TLS 1.2
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 # TLS 1.2
- TLS_AES_256_GCM_SHA384 # TLS 1.3
- TLS_CHACHA20_POLY1305_SHA256 # TLS 1.3
curvePreferences:
- CurveP521
- CurveP384
sniStrict: true