31 lines
528 B
YAML
31 lines
528 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: traefik
|
|
data:
|
|
config: |
|
|
api:
|
|
insecure: true
|
|
dashboard: true
|
|
|
|
ping: {}
|
|
|
|
providers:
|
|
kubernetesingress: {}
|
|
|
|
entryPoints:
|
|
web:
|
|
address: :80
|
|
http:
|
|
# redirections:
|
|
# entryPoint:
|
|
# to: websecure
|
|
# scheme: https
|
|
# permanent: false
|
|
# http3: {}
|
|
websecure:
|
|
address: :443
|
|
http2:
|
|
maxConcurrentStreams: 16
|
|
http3: {}
|