cka-SVV/shared-volume.yaml
2020-09-01 23:01:23 +00:00

26 lines
403 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: sharedvolume
spec:
containers:
- image: centos:7
name: centos1
command:
- sleep
- "3600"
volumeMounts:
- mountPath: /centos1
name: test
- image: centos:7
name: centos2
command:
- sleep
- "3600"
volumeMounts:
- mountPath: /centos2
name: test
volumes:
- name: test
emptyDir: {}