Add NFS export/import pod examples.

This commit is contained in:
Jan Safranek
2015-04-02 10:47:21 +02:00
parent a94ffc8625
commit ed46c4db51
11 changed files with 190 additions and 21 deletions

View File

@@ -0,0 +1,27 @@
#
# This pod imports nfs-server.default.kube.local:/ into /var/www/html
#
apiVersion: v1beta3
kind: Pod
metadata:
name: nfs-web
spec:
containers:
- name: web
image: dockerfile/nginx
ports:
- name: web
containerPort: 80
protocol: tcp
volumeMounts:
# name must match the volume name below
- name: nfs
mountPath: "/var/www/html"
volumes:
- name: nfs
nfs:
# FIXME: use the right hostname
server: nfs-server.default.kube.local
path: "/"
readOnly: false