Files
homelab-manifests/argocd-system/argocd-dex-server-patch.yaml
T
2026-01-03 19:49:43 +01:00

28 lines
624 B
YAML

# argocd-dex-server-patch.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: argocd-dex-server
namespace: argocd
spec:
template:
spec:
containers:
- name: dex
livenessProbe:
httpGet:
path: /healthz/live
port: 5558
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /healthz/ready
port: 5558
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3