-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
57 lines (50 loc) · 1.77 KB
/
values.yaml
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
# Default values for keycloak-gatekeeper.
image:
name: keycloak/keycloak-gatekeeper
tag: 5.0.0
pullPolicy: IfNotPresent
# Labels to be applied to all objects of this chart
extraLabels: {}
# Service pointing internally to the keycloak-gatekeeper
service:
type: ClusterIP
port: 80
# URL that this proxy will forward requests to
upstreamUrl: ""
# Enable if you want to access the keycloak-gatekeeper from the external world, through the ingress-controller
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
path: /
hosts:
- chart-example.local
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# OpenID Connect configuration, to fill according to how you configured the trusted IdP
oidc:
clientId: ""
clientSecret: ""
discoveryUrl: ""
allowedRoles: [] # Empty array means there are no restrictions based on the roles in the user claims
skipOpenIDProviderTlsVerify: false # For testing only
# Page templates:
# - Forbidden page: shown when user is not authorized to access the resource (e.g. user does not have the required role).
# - Login page: shown when user has no token, or it's expired. In this template, `{{ .redirect }}` will expand to the login page link.
# - Leave empty to use the page templates included in this chart (unless useUpstreamPageTemplates is enabled)
# - If you want to use the upstream page templates included in keycloak-proxy, enable useUpstreamPageTemplates
proxyOptions:
listenPort: 3000
tokenEncryption: true
# tokenEncryptionKey: ""
enableHttpLogging: false
userFriendlyPages:
enableLoginPage: true
enableForbiddenPage: true
useUpstreamTemplates: false
forbiddenPageTemplate: ""
loginPageTemplate: ""
verbose: false