We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fa4b25 commit 849aebbCopy full SHA for 849aebb
deploy/k8s/node-daemonset.yaml
@@ -90,6 +90,16 @@ spec:
90
- "--csi-address=$(ADDRESS)"
91
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
92
- "--v=5"
93
+ - "--health-port=9809"
94
+ livenessProbe:
95
+ httpGet:
96
+ path: /healthz
97
+ port: healthz
98
+ failureThreshold: 5
99
+ initialDelaySeconds: 60
100
+ periodSeconds: 10
101
+ successThreshold: 1
102
+ timeoutSeconds: 15
103
env:
104
- name: ADDRESS
105
value: /csi/csi.sock
@@ -100,6 +110,9 @@ spec:
110
mountPath: /csi
111
- name: registration-dir
112
mountPath: /registration
113
+ ports:
114
+ - containerPort: 9809
115
+ name: healthz
116
117
volumes:
118
- name: plugin-dir
0 commit comments