You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-07-13 01:40:48 +02:00
doc: fix dex helm chart values for k8s example (#2880)
--------- Co-authored-by: vinay chandrasekharan <vinay.cn@gmail.com> Co-authored-by: Jan Larwig <jan@larwig.com>
This commit is contained in:
committed by
GitHub
parent
507d63e05b
commit
5260633103
@ -16,6 +16,7 @@ Then:
|
|||||||
* `make deploy`
|
* `make deploy`
|
||||||
|
|
||||||
Visit http://httpbin.localtest.me or http://hello-world.localtest.me/
|
Visit http://httpbin.localtest.me or http://hello-world.localtest.me/
|
||||||
|
Note: When accessing the service for the first time you will need to authenticate with Dex. It is configured using static credentials for testing. With username `admin@example.com` and password set to `password`.
|
||||||
|
|
||||||
## Uninstall
|
## Uninstall
|
||||||
|
|
||||||
|
@ -2,8 +2,12 @@ dex:
|
|||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
hosts:
|
hosts:
|
||||||
- dex.localtest.me
|
- host: dex.localtest.me
|
||||||
grpc: false
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: ImplementationSpecific
|
||||||
|
grpc:
|
||||||
|
enabled: false
|
||||||
certs:
|
certs:
|
||||||
grpc:
|
grpc:
|
||||||
create: false
|
create: false
|
||||||
@ -12,6 +16,11 @@ dex:
|
|||||||
|
|
||||||
config:
|
config:
|
||||||
issuer: http://dex.localtest.me
|
issuer: http://dex.localtest.me
|
||||||
|
storage:
|
||||||
|
type: kubernetes
|
||||||
|
config:
|
||||||
|
inCluster: true
|
||||||
|
enablePasswordDB: true
|
||||||
expiry:
|
expiry:
|
||||||
signingKeys: "4h"
|
signingKeys: "4h"
|
||||||
idTokens: "1h"
|
idTokens: "1h"
|
||||||
@ -35,9 +44,6 @@ oauth2-proxy:
|
|||||||
enabled: true
|
enabled: true
|
||||||
hosts:
|
hosts:
|
||||||
- oauth2-proxy.localtest.me
|
- oauth2-proxy.localtest.me
|
||||||
annotations:
|
|
||||||
nginx.ingress.kubernetes.io/server-snippet: |
|
|
||||||
large_client_header_buffers 4 32k;
|
|
||||||
# pick up client_id and client_secret from configFile as opposed to helm .Values.config.clientID and .Values.config.clientSecret
|
# pick up client_id and client_secret from configFile as opposed to helm .Values.config.clientID and .Values.config.clientSecret
|
||||||
proxyVarsAsSecrets: false
|
proxyVarsAsSecrets: false
|
||||||
config:
|
config:
|
||||||
|
Reference in New Issue
Block a user