added argocd-system

This commit is contained in:
kisfenyo
2026-01-03 19:49:43 +01:00
parent abcb27d2ef
commit d5c04b219a
2 changed files with 110 additions and 0 deletions
@@ -0,0 +1,27 @@
# 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