Go to file
Jan Safranek 17d9131673 Add PR template 2019-04-15 14:07:11 +02:00
.github Add PR template 2019-04-15 14:07:11 +02:00
cmd/nfsplugin switch to csi-release-tools 2019-02-20 09:10:47 +01:00
deploy/kubernetes Update deployment files and Dockerfile 2019-02-07 19:53:29 +05:30
examples/kubernetes Move nfs csi-driver to its own repo 'csi-driver-nfs' 2019-02-07 14:48:27 +05:30
pkg/nfs Merge branch 'add-nfs-diver' into driver-nfs 2019-02-14 11:29:01 +05:30
release-tools Add 'release-tools/' from commit '33d58fdc29b90120bf16e536042379251f8631f2' 2019-02-20 08:59:57 +01:00
vendor Add vendor dependencies 2019-02-07 14:49:15 +05:30
.gitignore switch to csi-release-tools 2019-02-20 09:10:47 +01:00
.travis.yml switch to csi-release-tools 2019-02-20 09:10:47 +01:00
CONTRIBUTING.md Initial commit from kubernetes-template-project 2018-09-18 11:51:05 -07:00
Dockerfile switch to csi-release-tools 2019-02-20 09:10:47 +01:00
Gopkg.lock Move nfs csi-driver to its own repo 'csi-driver-nfs' 2019-02-07 14:48:27 +05:30
Gopkg.toml Move nfs csi-driver to its own repo 'csi-driver-nfs' 2019-02-07 14:48:27 +05:30
LICENSE Initial commit from kubernetes-template-project 2018-09-18 11:51:05 -07:00
Makefile switch to csi-release-tools 2019-02-20 09:10:47 +01:00
OWNERS add msau42 to approvers 2019-02-20 13:29:05 -08:00
README.md Move nfs csi-driver to its own repo 'csi-driver-nfs' 2019-02-07 14:48:27 +05:30
RELEASE.md Initial commit from kubernetes-template-project 2018-09-18 11:51:05 -07:00
SECURITY_CONTACTS Update OWNERS and SECURITY_CONTACTS 2018-09-18 11:52:04 -07:00
code-of-conduct.md Initial commit from kubernetes-template-project 2018-09-18 11:51:05 -07:00

README.md

CSI NFS driver

Kubernetes

Requirements

The folllowing feature gates and runtime config have to be enabled to deploy the driver

FEATURE_GATES=CSIPersistentVolume=true,MountPropagation=true
RUNTIME_CONFIG="storage.k8s.io/v1alpha1=true"

Mountprogpation requries support for privileged containers. So, make sure privileged containers are enabled in the cluster.

Example local-up-cluster.sh

ALLOW_PRIVILEGED=true FEATURE_GATES=CSIPersistentVolume=true,MountPropagation=true RUNTIME_CONFIG="storage.k8s.io/v1alpha1=true" LOG_LEVEL=5 hack/local-up-cluster.sh

Deploy

kubectl -f deploy/kubernetes create

Example Nginx application

Please update the NFS Server & share information in nginx.yaml file.

kubectl -f examples/kubernetes/nginx.yaml create

Using CSC tool

Build nfsplugin

$ make nfs

Start NFS driver

$ sudo ./_output/nfsplugin --endpoint tcp://127.0.0.1:10000 --nodeid CSINode -v=5

Test

Get csc tool from https://github.com/rexray/gocsi/tree/master/csc

Get plugin info

$ csc identity plugin-info --endpoint tcp://127.0.0.1:10000
"NFS"	"0.1.0"

NodePublish a volume

$ export NFS_SERVER="Your Server IP (Ex: 10.10.10.10)"
$ export NFS_SHARE="Your NFS share"
$ csc node publish --endpoint tcp://127.0.0.1:10000 --target-path /mnt/nfs --attrib server=$NFS_SERVER --attrib share=$NFS_SHARE nfstestvol
nfstestvol

NodeUnpublish a volume

$ csc node unpublish --endpoint tcp://127.0.0.1:10000 --target-path /mnt/nfs nfstestvol
nfstestvol

Get NodeID

$ csc node get-id --endpoint tcp://127.0.0.1:10000
CSINode

Community, discussion, contribution, and support

Learn how to engage with the Kubernetes community on the community page.

You can reach the maintainers of this project at:

Code of conduct

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.