mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-05 19:21:37 +00:00
NFSMount storage plugin for kubelet.
* If you want to test this out when an actual NFS export a good place to start is by running the NFS server in a container: docker run -d --name nfs --privileged cpuguy83/nfs-server /tmp More detail can be found here: https://github.com/cpuguy83/docker-nfs-server
This commit is contained in:
9
examples/storage/persistentvolume-nfs-example.yaml
Normal file
9
examples/storage/persistentvolume-nfs-example.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
id: pv0003
|
||||
kind: PersistentVolume
|
||||
apiVersion: v1beta1
|
||||
spec:
|
||||
source:
|
||||
nfsMount:
|
||||
server: "172.17.0.2"
|
||||
path: "/tmp"
|
||||
readOnly: false
|
Reference in New Issue
Block a user