File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 33## Prerequisites
44 - [ install Helm] ( https://helm.sh/docs/intro/quickstart/#install-helm )
55
6+ ### Tips
7+ - make controller only run on master node: ` --set controller.runOnMaster=true `
8+ - set replica of controller as ` 1 ` : ` --set controller.replicas=1 `
9+
610## install latest version
711``` console
812helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
@@ -15,6 +19,13 @@ helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/cs
1519helm install csi-driver-smb csi-driver-smb/csi-driver-smb --namespace kube-system --version v1.1.0
1620```
1721
22+ ### install driver with customized driver name, deployment name
23+ > only supported from ` v1.2.0 ` +
24+ - following example would install a driver with name ` smb2 `
25+ ``` console
26+ helm install csi-driver-smb2 csi-driver-smb/csi-driver-smb --namespace kube-system --set driver.name="smb2.csi.k8s.io" --set controller.name="csi-smb2-controller" --set rbac.name=smb2 --set serviceAccount.controller=csi-smb2-controller-sa --set serviceAccount.node=csi-smb2-node-sa --set node.name=csi-smb2-node --set node.livenessProbe.healthPort=39643
27+ ```
28+
1829### search for all available chart versions
1930``` console
2031helm search repo -l csi-driver-smb
You can’t perform that action at this time.
0 commit comments