ceph-csi/examples/cephfs/pod.yaml

18 lines
320 B
YAML
Raw Normal View History

---
2018-07-18 14:49:15 +00:00
apiVersion: v1
kind: Pod
metadata:
name: csicephfs-demo-pod
spec:
containers:
- name: web-server
image: nginx
volumeMounts:
- name: mypvc
mountPath: /var/lib/www
2018-07-18 14:49:15 +00:00
volumes:
- name: mypvc
persistentVolumeClaim:
claimName: csi-cephfs-pvc
readOnly: false