You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
641 B
30 lines
641 B
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: dex
|
|
data:
|
|
config.yaml: |
|
|
issuer: $(issuer)
|
|
storage:
|
|
type: kubernetes
|
|
config:
|
|
inCluster: true
|
|
web:
|
|
http: 0.0.0.0:5556
|
|
logger:
|
|
level: "debug"
|
|
format: text
|
|
oauth2:
|
|
skipApprovalScreen: true
|
|
enablePasswordDB: true
|
|
staticPasswords:
|
|
- email: $(static_email)
|
|
hash: $(static_password_hash)
|
|
username: $(static_username)
|
|
userID: $(static_user_id)
|
|
staticClients:
|
|
- id: $(client_id)
|
|
redirectURIs: $(oidc_redirect_uris)
|
|
name: 'Dex Login Application'
|
|
secret: $(application_secret)
|
|
|