Skip to content

Commit

Permalink
Merge pull request #825 from boddumanohar/livenessprobe
Browse files Browse the repository at this point in the history
add a new helm parameter for livenessProbe health port
  • Loading branch information
k8s-ci-robot authored May 4, 2021
2 parents 46fc3cf + ca7b090 commit bb4c26e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ The following table lists the configurable parameters of the latest Azure Disk C
| `kubelet.linuxPath` | configure the kubelet path for Linux node | `/var/lib/kubelet` |
| `kubelet.windowsPath` | configure the kubelet path for Windows node | `'C:\var\lib\kubelet'` |
| `cloud` | the cloud environment the driver is running on | AzurePublicCloud |
| `node.livenessProbe.healthPort ` | the health check port for liveness probe | `29603` |

## troubleshooting
- Add `--wait -v=5 --debug` in `helm install` command to get detailed error
Expand Down
Binary file modified charts/latest/azuredisk-csi-driver-v1.3.0.tgz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --probe-timeout=3s
- --health-port=29603
- --health-port={{ .Values.node.livenessProbe.healthPort }}
- --v=2
resources:
limits:
Expand Down
2 changes: 2 additions & 0 deletions charts/latest/azuredisk-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ controller:
node:
metricsPort: 29605
logLevel: 5
livenessProbe:
healthPort: 29603

snapshot:
enabled: false
Expand Down

0 comments on commit bb4c26e

Please sign in to comment.