traefik middleware and tls adjustments
This commit is contained in:
@ -22,7 +22,9 @@ ingressRoute:
|
||||
enabled: true
|
||||
# Custom match rule with host domain
|
||||
matchRule: Host(`tr.steffenillium.de`)
|
||||
entryPoints: ["websecure", "web"]
|
||||
entryPoints:
|
||||
- "websecure"
|
||||
- "web"
|
||||
# Add custom middlewares : authentication and redirection
|
||||
# middlewares:
|
||||
# - name: traefik-dashboard-auth
|
||||
@ -38,12 +40,15 @@ additionalArguments:
|
||||
|
||||
ports:
|
||||
web:
|
||||
port: 8000
|
||||
expose: true
|
||||
exposedPort: 80
|
||||
protocol: TCP
|
||||
http3:
|
||||
enabled: false
|
||||
tls:
|
||||
enabled: false
|
||||
websecure:
|
||||
## -- Enable this entrypoint as a default entrypoint. When a service doesn't explicitly set an entrypoint it will only use this entrypoint.
|
||||
## ONLY AVAILABLE ON V3
|
||||
asDefault: false
|
||||
port: 8443
|
||||
expose: true
|
||||
exposedPort: 443
|
||||
@ -52,8 +57,10 @@ ports:
|
||||
enabled: false
|
||||
tls:
|
||||
enabled: true
|
||||
certResolver: default
|
||||
|
||||
middlewares: []
|
||||
middlewares:
|
||||
- "default-headers"
|
||||
|
||||
service:
|
||||
enabled: true
|
||||
|
@ -12,5 +12,3 @@ spec:
|
||||
services:
|
||||
- name: ui
|
||||
port: 80
|
||||
tls:
|
||||
certResolver: default
|
||||
|
@ -13,5 +13,3 @@ spec:
|
||||
- name: lcl-cert-manager
|
||||
kind: Service
|
||||
port: 9402
|
||||
tls:
|
||||
certResolver: default
|
||||
|
@ -11,6 +11,4 @@ spec:
|
||||
kind: Rule
|
||||
services:
|
||||
- name: kubernetes-dashboard
|
||||
port: 443
|
||||
tls:
|
||||
certResolver: default
|
||||
port: 8443
|
||||
|
@ -13,5 +13,3 @@ spec:
|
||||
services:
|
||||
- name: argocd-server
|
||||
port: 80
|
||||
tls:
|
||||
certResolver: default
|
||||
|
Reference in New Issue
Block a user