32 lines
600 B
YAML
32 lines
600 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: dex
|
||
|
labels:
|
||
|
app: dex
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: dex
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: dex
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: dex
|
||
|
image: quay.io/dexidp/dex:v2.27.0
|
||
|
ports:
|
||
|
- containerPort: 5556
|
||
|
args:
|
||
|
- serve
|
||
|
- /etc/dex/cfg/config.yaml
|
||
|
volumeMounts:
|
||
|
- mountPath: /etc/dex/cfg
|
||
|
name: config
|
||
|
volumes:
|
||
|
- name: config
|
||
|
configMap:
|
||
|
name: dex-config
|
||
|
|