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