add a new helm parameter for livenessProbe health port

This commit is contained in:
Manohar Reddy 2021-05-03 06:18:32 +00:00
parent 670205f274
commit fa61d6ee15
4 changed files with 4 additions and 1 deletions

View File

@ -50,6 +50,7 @@ The following table lists the configurable parameters of the latest NFS CSI Driv
| `controller.runOnMaster` | run controller on master node | false |
| `controller.logLevel` | controller driver log level |`5` |
| `node.logLevel` | node driver log level |`5` |
| `node.livenessProbe.healthPort ` | the health check port for liveness probe |`29653` |
## troubleshooting
- Add `--wait -v=5 --debug` in `helm install` command to get detailed error

View File

@ -29,7 +29,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
- --health-port=29653
- --health-port={{ .Values.node.livenessProbe.healthPort }}
- --v=2
imagePullPolicy: {{ .Values.image.livenessProbe.pullPolicy }}
volumeMounts:

View File

@ -26,6 +26,8 @@ controller:
node:
logLevel: 5
livenessProbe:
healthPort: 29653
## Reference to one or more secrets to be used when pulling images
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/