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: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ This is `deploy/class.yaml` which defines the NFS subdir external provisioner's
127
127
apiVersion: storage.k8s.io/v1
128
128
kind: StorageClass
129
129
metadata:
130
-
name: managed-nfs-storage
130
+
name: nfs-client
131
131
provisioner: k8s-sigs.io/nfs-subdir-external-provisioner # or choose another name, must match deployment's env PROVISIONER_NAME'
132
132
parameters:
133
133
pathPattern: "${.PVC.namespace}/${.PVC.annotations.nfs.io/storage-path}" # waits for nfs.io/storage-path annotation, if not specified will accept as empty string.
@@ -166,7 +166,7 @@ metadata:
166
166
annotations:
167
167
nfs.io/storage-path: "test-path" # not required, depending on whether this annotation was shown in the storage class description
The command deploys the given storage class in the default configuration. It can be used afterswards to provision persistent volumes. The [configuration](#configuration) section lists the parameters that can be configured during installation.
33
+
The command deploys the given storage class in the default configuration. It can be used afterwards to provision persistent volumes. The [configuration](#configuration) section lists the parameters that can be configured during installation.
34
34
35
35
> **Tip**: List all releases using `helm list`
36
36
@@ -83,3 +83,15 @@ The following tables lists the configurable parameters of this chart and their d
83
83
|`affinity`| Affinity settings |`{}`|
84
84
|`tolerations`| List of node taints to tolerate |`[]`|
85
85
|`labels`| Additional labels for any resource created |`{}`|
86
+
87
+
## Install Multiple Provisioners
88
+
89
+
It is possible to install more than one provisioner in your cluster to have access to multiple nfs servers and/or multiple exports from a single nfs server. Each provisioner must have a different `storageClass.provisionerName` and therefore a different `storageClass.name`. For example:
0 commit comments