mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
c85d03c79e
Add snapshot class, snapshot, restore, clone PVC and pod yamls for e2e test to consume Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
18 lines
334 B
YAML
18 lines
334 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: csi-cephfs-clone-demo-app
|
|
spec:
|
|
containers:
|
|
- name: web-server
|
|
image: nginx
|
|
volumeMounts:
|
|
- name: mypvc
|
|
mountPath: /var/lib/www/html
|
|
volumes:
|
|
- name: mypvc
|
|
persistentVolumeClaim:
|
|
claimName: cephfs-pvc-clone
|
|
readOnly: false
|