nfs-subdir-external-provisioner
nfs-subdir-external-provisioner copied to clipboard
Dynamic sub-dir volume provisioner on a remote NFS server.
Here is an idea for contributors to this project: It would be nice to set the [volumeBindingMode](https://kubernetes.io/docs/concepts/storage/storage-classes/#volume-binding-mode) option on the storage class in the helm chart. For some deployments (e.g....
spec: limits: - type: PersistentVolumeClaim max: storage: 2Gi min: storage: 1Gi
in addition the fixes already done to solve vulnerabilities in the repository, this new github action will allow us to make sure we will keep it that way in the...
Signed-off-by: Humble Chirammal
Looking at the default pattern it uses `${.PVC.namespace}-${.PVC.name}-${pvname}`. it is possible to get both the namespace and the name of the PVC, but not the name of the PV. Is...
This relates to issue #149 and allows to use the PVName in the path pattern. You can now use ${.PVC.namespace}-${.PVC.name}-${.PVC.volume} as the pathPattern to have the exact same volume name...
Default permissions for persistent volumes created by nfs-subdir-external-provisioner is root:root and 777(rwxrwxrwx). is there anyway to restrict the permissions and user/group to something like user:user 770(rwxrwx---).?
### What I want I'd like to be able to destroy a StatefulSet, then optionally un-archive the previous PVC directory and use it to satisfy the claim for a new...
Hello, I am wanting to create two different storageclasses with different types of storage(hdd, ssd), and I am wondering how this might be done using this external provisioner. Can this...
Support Kerberized NFS (`krb5p`) adding `extraContainers`, `extraEnvVars`, `extraVolumes` & `extraVolumeMounts` to allow more advanced deployments. To support Kerberized NFS `values.yaml` may contain: ``` extraVolumes: - name: krb5-config configMap: name: kerberos-config...