cka-SVV/morevolumes.yaml
sandervanvugt 43a8c4c6e8 message
2022-11-28 12:20:43 -08:00

26 lines
411 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: morevol
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: {}