You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/driver-parameters.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,18 @@ csi.storage.k8s.io/provisioner-secret-namespace | namespace where the secret is
12
12
csi.storage.k8s.io/node-stage-secret-name | secret name that stores `username`, `password`(`domain` is optional) | existing secret name | Yes |
13
13
csi.storage.k8s.io/node-stage-secret-namespace | namespace where the secret is | existing secret namespace | Yes |
14
14
15
+
- VolumeID(`volumeHandle`) is the identifier of the volume handled by the driver, format of VolumeID:
16
+
```
17
+
{smb-server-address}#{sub-dir-name}#{share-name}
18
+
```
19
+
> `sub-dir-name` could be empty if not provided
20
+
15
21
### PV/PVC Usage
16
22
> get an [example](../deploy/example/pv-smb.yaml)
17
23
18
24
Name | Meaning | Available Value | Mandatory | Default value
19
25
--- | --- | --- | --- | ---
26
+
volumeHandle | Specify a value the driver can use to uniquely identify the share in the cluster. | A recommended way to produce a unique value is to combine the smb-server address, sub directory name and share name: `{smb-server-address}#{sub-dir-name}#{share-name}`. | Yes |
0 commit comments