ceph-csi/deploy/rbd/pod.yaml

18 lines
299 B
YAML
Raw Normal View History

apiVersion: v1
kind: Pod
metadata:
name: web-server
spec:
containers:
- name: web-server
image: nginx
volumeMounts:
- mountPath: /var/lib/www/html
name: mypvc
volumes:
- name: mypvc
persistentVolumeClaim:
claimName: rbd-pvc
readOnly: false