mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
18 lines
356 B
YAML
18 lines
356 B
YAML
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: csi-cephfs-demo-rwop-pod
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: web-server
|
||
|
image: docker.io/library/nginx:latest
|
||
|
volumeMounts:
|
||
|
- name: mypvc
|
||
|
mountPath: /var/lib/www
|
||
|
volumes:
|
||
|
- name: mypvc
|
||
|
persistentVolumeClaim:
|
||
|
claimName: csi-cephfs-rwop-pvc
|
||
|
readOnly: false
|