Files
kubernetes/examples/nfs/test.yaml
Steve Watt 0df63ab0c1 Update volumes.md
Update docs and example for NFS Plugin

Modified the wording around how many Volumes exist

Cleaned up the text around the NFS Pod description

Fixed Spelling mistake on read-only
2015-03-30 20:40:51 -05:00

22 lines
476 B
YAML

apiVersion: v1beta1
desiredState:
manifest:
containers:
- name: testpd
image: dockerfile/nginx
volumeMounts:
# name must match the volume name below
- name: myshare
mountPath: "/var/www/html/mount-test"
id: nfspd
version: v1beta1
volumes:
- name: myshare
source:
nfs:
server: "172.17.0.2"
path: "/tmp"
readOnly: false
id: nfspd
kind: Pod