Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e3bc885ae | ||
|
|
5ef058fbef | ||
|
|
ff57d1a07c | ||
|
|
a93a29655b |
@@ -19,6 +19,9 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/os: linux
|
kubernetes.io/os: linux
|
||||||
|
securityContext:
|
||||||
|
fsGroup: 1000
|
||||||
|
fsGroupChangePolicy: OnRootMismatch
|
||||||
volumes:
|
volumes:
|
||||||
- name: creds
|
- name: creds
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
@@ -38,10 +41,10 @@ spec:
|
|||||||
name: doka2-lobby-list-secrets
|
name: doka2-lobby-list-secrets
|
||||||
key: ADMIN_PASSWORD
|
key: ADMIN_PASSWORD
|
||||||
- name: CREDS_DIR
|
- name: CREDS_DIR
|
||||||
value: /data/creds
|
value: /data
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: creds
|
- name: creds
|
||||||
mountPath: /data/creds
|
mountPath: /data
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: "50m"
|
cpu: "50m"
|
||||||
|
|||||||
@@ -23,4 +23,4 @@ spec:
|
|||||||
decodingStrategy: None
|
decodingStrategy: None
|
||||||
metadataPolicy: None
|
metadataPolicy: None
|
||||||
key: af4618dd-6431-4b20-b617-c00bae9ceff6
|
key: af4618dd-6431-4b20-b617-c00bae9ceff6
|
||||||
property: password
|
property: login.password
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: argocd-dex-server
|
||||||
|
namespace: argocd
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: dex-server
|
||||||
|
readinessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: 5556
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 10
|
||||||
|
timeoutSeconds: 3
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
livenessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: 5556
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 30
|
||||||
|
timeoutSeconds: 3
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
@@ -16,3 +16,5 @@ helmCharts:
|
|||||||
valuesFile: values.yaml
|
valuesFile: values.yaml
|
||||||
includeCRDs: true
|
includeCRDs: true
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- path: dex-probes-patch.yaml
|
||||||
|
|||||||
Reference in New Issue
Block a user