cka-SVV/shared-storage.yaml
2020-12-14 18:13:46 +01:00

26 lines
416 B
YAML

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