mirror of https://github.com/k3s-io/k3s
22 lines
468 B
YAML
22 lines
468 B
YAML
apiVersion: v1beta1
|
|
desiredState:
|
|
manifest:
|
|
containers:
|
|
- name: testpd
|
|
image: dockerfile/nginx
|
|
volumeMounts:
|
|
# name must match the volume name below
|
|
- name: nfs
|
|
mountPath: "/var/www/html/mount-test"
|
|
id: nfspd
|
|
version: v1beta1
|
|
volumes:
|
|
- name: nfs
|
|
source:
|
|
nfs:
|
|
server: "172.17.0.2"
|
|
path: "/tmp"
|
|
readOnly: false
|
|
id: nfspd
|
|
kind: Pod
|