-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
104 lines (88 loc) · 2.19 KB
/
values.yaml
File metadata and controls
104 lines (88 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
replicaCount: 1
image:
repository: ghcr.io/radicand/forwardauth-rs
tag: latest
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
port: 80
targetPort: 8080
ingress:
enabled: false
className: ""
annotations: {}
# traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
# traefik.ingress.kubernetes.io/router.priority: "99999"
hosts:
- host: auth.example.test
paths:
- path: /
pathType: Prefix
tls: []
# Application configuration (mounted as /config/application.yaml)
# This format is compatible with the original traefik-forward-auth0
applicationYaml: {}
# domain: https://xxxxx.xx.auth0.com/
# token-endpoint: https://xxx.xx.auth0.com/oauth/token
# authorize-url: https://xxxx.xx.auth0.com/authorize
# userinfo-endpoint: https://xxxx.xx.auth0.com/userinfo
# logout-endpoint: https://xxxx.xx.auth0.com/v2/logout
# default:
# name: www.example.test
# client-id: <from auth0 application config>
# client-secret: <from auth0 application config>
# audience: <from auth0 api config>
# scope: "profile openid email"
# redirect-uri: https://www.example.test/oauth2/signin
# token-cookie-domain: example.test
# return-to: https://www.example.test
# apps:
# - name: traefik.example.test
# audience: <from auth0 api config>
# Use an existing configmap instead of creating one
existingConfigMap: ""
resources:
limits:
memory: 64Mi
requests:
cpu: 10m
memory: 32Mi
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
podSecurityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- ALL
livenessProbe:
httpGet:
path: /health
port: http
initialDelaySeconds: 5
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /health
port: http
initialDelaySeconds: 3
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
env: []
# - name: RUST_LOG
# value: "info,forwardauth_rs=debug"
# - name: PORT
# value: "8080"