vault-csi: tolerate busy-node probe delays

This commit is contained in:
jenkins 2026-05-21 15:52:48 -03:00
parent 4e82df6891
commit 1332b611a3

View File

@ -79,8 +79,8 @@ spec:
- -endpoint=/provider/vault.sock
- -log-level=info
resources:
requests: { cpu: 50m, memory: 100Mi }
limits: { cpu: 50m, memory: 100Mi }
requests: { cpu: 75m, memory: 100Mi }
limits: { cpu: 200m, memory: 128Mi }
volumeMounts:
- { name: providervol, mountPath: "/provider" }
livenessProbe:
@ -88,21 +88,21 @@ spec:
path: "/health/ready"
port: 8080
scheme: "HTTP"
failureThreshold: 2
failureThreshold: 3
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 3
timeoutSeconds: 5
readinessProbe:
httpGet:
path: "/health/ready"
port: 8080
scheme: "HTTP"
failureThreshold: 2
failureThreshold: 3
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 3
timeoutSeconds: 5
volumes:
- name: providervol
hostPath: