From b93935a9825754944a0af82367bf6d0610a1782c Mon Sep 17 00:00:00 2001 From: Illyoung Choi Date: Mon, 5 Aug 2024 14:43:37 -0700 Subject: [PATCH] increase probe timeout for heavy workload --- deploy/kubernetes/base/node.yaml | 9 +++++---- helm/templates/node.yaml | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/deploy/kubernetes/base/node.yaml b/deploy/kubernetes/base/node.yaml index 063d2a1..ab06afa 100644 --- a/deploy/kubernetes/base/node.yaml +++ b/deploy/kubernetes/base/node.yaml @@ -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: @@ -125,6 +125,7 @@ spec: args: - --csi-address=/csi/csi.sock - --health-port=9810 + - --probe-timeout=10s volumeMounts: - name: socket-dir mountPath: /csi diff --git a/helm/templates/node.yaml b/helm/templates/node.yaml index 41ae143..fdc5deb 100644 --- a/helm/templates/node.yaml +++ b/helm/templates/node.yaml @@ -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 @@ -136,6 +136,7 @@ spec: args: - --csi-address=/csi/csi.sock - --health-port=9810 + - --probe-timeout=10s volumeMounts: - name: socket-dir mountPath: /csi