본문으로 건너뛰기

Dex

설치

helm repo add dex https://charts.dexidp.io
helm repo update dex \
&& helm search repo dex/dex -l | head -n 10
helm pull dex/dex --version 0.19.1
helm show values dex/dex --version 0.19.1 > dex-0.19.1.yaml
dex-values.yaml
config:
issuer: <uri>

storage:
type: <type>
config:
<key>: <value>

connectors:
- type: <type>
id: <id>
name: <name>
config:
<key>: <value>

staticClients:
- name: <name>
id: <id>
secret: <secret>
redirectURIs:
- <uri>
helm template dex dex/dex \
--version 0.19.1 \
-n dex \
-f dex-values.yaml \
> dex.yaml
helm upgrade dex dex-0.19.1.tgz \
--install \
--history-max 5 \
-n dex \
-f dex-values.yaml