rook-ceph/csi/cephfs/pod.yaml

18 lines
321 B
YAML
Raw Permalink Normal View History

2025-02-15 20:43:59 +08:00
---
apiVersion: v1
kind: Pod
metadata:
name: csicephfs-demo-pod
spec:
containers:
- name: web-server
image: nginx
volumeMounts:
- name: mypvc
mountPath: /var/lib/www/html
volumes:
- name: mypvc
persistentVolumeClaim:
claimName: cephfs-pvc
readOnly: false