traefik values
This commit is contained in:
parent
763fc251da
commit
eec674cf31
1 changed files with 24 additions and 22 deletions
|
@ -1,9 +1,4 @@
|
|||
additionalArguments:
|
||||
- --entrypoints.web.forwardedHeaders.trustedIPs=0.0.0.0/0
|
||||
- --entrypoints.websecure.forwardedHeaders.trustedIPs=0.0.0.0/0
|
||||
- --entrypoints.ssh.address=:22
|
||||
- --providers.kubernetescrd.allowCrossNamespace=true
|
||||
- --log.level=INFO
|
||||
additionalArguments: []
|
||||
additionalVolumeMounts: []
|
||||
affinity: {}
|
||||
autoscaling:
|
||||
|
@ -48,6 +43,9 @@ env: []
|
|||
envFrom: []
|
||||
experimental:
|
||||
abortOnPluginFailure: false
|
||||
fastProxy:
|
||||
debug: false
|
||||
enabled: false
|
||||
kubernetesGateway:
|
||||
enabled: false
|
||||
plugins:
|
||||
|
@ -81,6 +79,8 @@ hub:
|
|||
listenAddr: ''
|
||||
secretName: ''
|
||||
enabled: false
|
||||
experimental:
|
||||
aigateway: false
|
||||
redis:
|
||||
cluster: null
|
||||
database: null
|
||||
|
@ -107,7 +107,7 @@ image:
|
|||
ingressClass:
|
||||
enabled: true
|
||||
isDefaultClass: true
|
||||
name: traefik-ingress
|
||||
name: ''
|
||||
ingressRoute:
|
||||
dashboard:
|
||||
annotations: {}
|
||||
|
@ -235,13 +235,13 @@ nodeSelector:
|
|||
persistence:
|
||||
accessMode: ReadWriteOnce
|
||||
annotations: {}
|
||||
enabled: true
|
||||
existingClaim: nfs-ssd-traefik-pvc
|
||||
enabled: false
|
||||
existingClaim: ''
|
||||
name: data
|
||||
path: /data
|
||||
size: 128Mi
|
||||
storageClass: ''
|
||||
subPath: certs
|
||||
subPath: ''
|
||||
volumeName: ''
|
||||
podDisruptionBudget:
|
||||
enabled: false
|
||||
|
@ -263,7 +263,7 @@ ports:
|
|||
ssh:
|
||||
nodePort: 30222
|
||||
port: 22
|
||||
targetport: 22
|
||||
targetport: 2222
|
||||
traefik:
|
||||
expose:
|
||||
default: false
|
||||
|
@ -279,14 +279,15 @@ ports:
|
|||
forwardedHeaders:
|
||||
insecure: false
|
||||
trustedIPs: []
|
||||
nodePort: 30808
|
||||
port: 80
|
||||
nodePort: null
|
||||
port: 8000
|
||||
protocol: TCP
|
||||
proxyProtocol:
|
||||
insecure: false
|
||||
trustedIPs: []
|
||||
redirectTo: {}
|
||||
targetPort: 80
|
||||
redirections:
|
||||
entryPoint: {}
|
||||
targetPort: null
|
||||
transport:
|
||||
keepAliveMaxRequests: null
|
||||
keepAliveMaxTime: null
|
||||
|
@ -312,13 +313,13 @@ ports:
|
|||
advertisedPort: null
|
||||
enabled: false
|
||||
middlewares: []
|
||||
nodePort: 30443
|
||||
port: 443
|
||||
nodePort: null
|
||||
port: 8443
|
||||
protocol: TCP
|
||||
proxyProtocol:
|
||||
insecure: false
|
||||
trustedIPs: []
|
||||
targetPort: 443
|
||||
targetPort: null
|
||||
tls:
|
||||
certResolver: ''
|
||||
domains: []
|
||||
|
@ -358,8 +359,9 @@ providers:
|
|||
hostname: ''
|
||||
ip: ''
|
||||
service:
|
||||
name: '{{ (include "traefik.fullname" .) }}'
|
||||
namespace: '{{ .Release.Namespace }}'
|
||||
enabled: true
|
||||
name: ''
|
||||
namespace: ''
|
||||
kubernetesIngress:
|
||||
allowEmptyServices: true
|
||||
allowExternalNameServices: false
|
||||
|
@ -402,7 +404,7 @@ service:
|
|||
externalTrafficPolicy: Local
|
||||
type: LoadBalancer
|
||||
serviceAccount:
|
||||
name: traefik
|
||||
name: ''
|
||||
serviceAccountAnnotations: {}
|
||||
startupProbe: {}
|
||||
tlsOptions: {}
|
||||
|
@ -413,7 +415,6 @@ tracing:
|
|||
addInternals: false
|
||||
capturedRequestHeaders: []
|
||||
capturedResponseHeaders: []
|
||||
globalAttributes: {}
|
||||
otlp:
|
||||
enabled: false
|
||||
grpc:
|
||||
|
@ -434,6 +435,7 @@ tracing:
|
|||
cert: ''
|
||||
insecureSkipVerify: false
|
||||
key: ''
|
||||
resourceAttributes: {}
|
||||
safeQueryParams: []
|
||||
sampleRate: null
|
||||
serviceName: null
|
||||
|
|
Loading…
Reference in a new issue