mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-05 11:39:29 +00:00
16 lines
350 B
YAML
16 lines
350 B
YAML
|
kind: Pod
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: my-csi-app
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: my-frontend
|
||
|
image: busybox
|
||
|
volumeMounts:
|
||
|
- mountPath: "/data"
|
||
|
name: my-csi-volume
|
||
|
command: [ "sleep", "1000000" ]
|
||
|
volumes:
|
||
|
- name: my-csi-volume
|
||
|
persistentVolumeClaim:
|
||
|
claimName: csi-pvc # defined in csi-pvs.yaml
|