Merge pull request #16069 from zmerlynn/nfs-1.1

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2015-10-28 22:39:09 -07:00
17 changed files with 217 additions and 219 deletions

View File

@@ -1,6 +1,6 @@
all: push
TAG = 0.3
TAG = 0.4
container:
docker build -t gcr.io/google_containers/volume-nfs . # Build new image and automatically tag it as latest

View File

@@ -20,7 +20,7 @@ function start()
# prepare /etc/exports
for i in "$@"; do
# fsid=0: needed for NFSv4
echo "$i *(rw,fsid=0,no_root_squash)" >> /etc/exports
echo "$i *(rw,fsid=0,insecure,no_root_squash)" >> /etc/exports
echo "Serving $i"
done