Skip to content

Commit 5bc9188

Browse files
authored
Merge pull request #412 from boddumanohar/liveness-proble
add a new helm parameter for livenessProbe health port
2 parents f736242 + 80c9f4d commit 5bc9188

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

charts/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
104104
| `podLabels` | collection of labels to add to all the pods | {} |
105105
| `priorityClassName` | priority class name to be added to pods | system-cluster-critical |
106106
| `securityContext` | security context to be added to pods | {} |
107+
| `node.livenessProbe.healthPort ` | the health check port for liveness probe | `29633` |
107108

108109
## troubleshooting
109110
- Add `--wait -v=5 --debug` in `helm install` command to get detailed error
19 Bytes
Binary file not shown.

charts/latest/blob-csi-driver/templates/csi-blob-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
args:
6161
- --csi-address=/csi/csi.sock
6262
- --probe-timeout=3s
63-
- --health-port=29633
63+
- --health-port={{ .Values.node.livenessProbe.healthPort }}
6464
- --v=2
6565
resources: {{- toYaml .Values.node.resources.livenessProbe | nindent 12 }}
6666
- name: node-driver-registrar

charts/latest/blob-csi-driver/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ node:
9898
affinity: {}
9999
nodeSelector: {}
100100
tolerations: []
101+
livenessProbe:
102+
healthPort: 29633
101103
kubelet:
102104
linuxPath: /var/lib/kubelet
103105
BlobCachePath: /mnt

0 commit comments

Comments
 (0)