27 lines
617 B
YAML
27 lines
617 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: ubuntu
|
|
labels:
|
|
app: ubuntu
|
|
spec:
|
|
containers:
|
|
- image: ubuntu
|
|
command:
|
|
- "sleep"
|
|
- "604800"
|
|
imagePullPolicy: IfNotPresent
|
|
name: ubuntu
|
|
volumeMounts:
|
|
- mountPath: /my-nfs-data
|
|
name: test-volume
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: test-volume
|
|
nfs:
|
|
server: 192.168.1.102
|
|
path: /1582b800/docker/tubearchivist
|
|
readOnly: true
|
|
mountOptions:
|
|
- nfsvers=4.1
|