add a new helm parameter for livenessProbe health port
This commit is contained in:
parent
670205f274
commit
fa61d6ee15
@ -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
|
||||
|
||||
Binary file not shown.
@ -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:
|
||||
|
||||
@ -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/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user