Skip to content

Commit

Permalink
Merge pull request #2514 from andyzhangx/increase-liveness-proble-tim…
Browse files Browse the repository at this point in the history
…eout-1.29

[release-1.29] fix: increase liveness-probe timeout on Windows node
  • Loading branch information
andyzhangx committed Sep 17, 2024
2 parents aa4a67d + 2c9b183 commit 46c9cef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified charts/latest/azuredisk-csi-driver-v1.29.9.tgz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
{{- end }}
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--probe-timeout=3s"
- "--probe-timeout=30s"
- "--health-port={{ .Values.node.livenessProbe.healthPort }}"
- "--v=2"
env:
Expand Down Expand Up @@ -150,8 +150,8 @@ spec:
httpGet:
path: /healthz
port: healthz
initialDelaySeconds: 30
timeoutSeconds: 10
initialDelaySeconds: 60
timeoutSeconds: 30
periodSeconds: 30
env:
- name: AZURE_CREDENTIAL_FILE
Expand Down
6 changes: 3 additions & 3 deletions deploy/csi-azuredisk-node-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
image: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe:v2.13.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--probe-timeout=3s"
- "--probe-timeout=30s"
- "--health-port=29603"
- "--v=2"
env:
Expand Down Expand Up @@ -119,8 +119,8 @@ spec:
httpGet:
path: /healthz
port: healthz
initialDelaySeconds: 30
timeoutSeconds: 10
initialDelaySeconds: 60
timeoutSeconds: 30
periodSeconds: 30
env:
- name: AZURE_CREDENTIAL_FILE
Expand Down

0 comments on commit 46c9cef

Please sign in to comment.