Skip to content

Commit

Permalink
increase probe timeout for heavy workload
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Aug 5, 2024
1 parent d143ab5 commit b93935a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions deploy/kubernetes/base/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ spec:
httpGet:
path: /healthz
port: healthz
initialDelaySeconds: 10
timeoutSeconds: 3
periodSeconds: 2
failureThreshold: 5
initialDelaySeconds: 15
timeoutSeconds: 10
periodSeconds: 10
failureThreshold: 10
- name: irods-pool
image: cyverse/irods-csi-driver-pool:latest
args:
Expand Down Expand Up @@ -125,6 +125,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --health-port=9810
- --probe-timeout=10s
volumeMounts:
- name: socket-dir
mountPath: /csi
Expand Down
9 changes: 5 additions & 4 deletions helm/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ spec:
httpGet:
path: /healthz
port: healthz
initialDelaySeconds: 10
timeoutSeconds: 3
periodSeconds: 2
failureThreshold: 5
initialDelaySeconds: 15
timeoutSeconds: 10
periodSeconds: 10
failureThreshold: 10
resources:
{{- toYaml .Values.nodeService.irodsPlugin.resources | nindent 12 }}
- name: irods-pool
Expand Down Expand Up @@ -136,6 +136,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --health-port=9810
- --probe-timeout=10s
volumeMounts:
- name: socket-dir
mountPath: /csi
Expand Down

0 comments on commit b93935a

Please sign in to comment.