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
22 lines
476 B
YAML
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
|