ceph-csi/e2e/templates/rbd-fs-deployment.yaml
Prasanna Kumar Kalever e5435c5bdc e2e: add deployment example for ROX used by multiple pods mounting same device
Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
2021-11-23 13:13:41 +00:00

30 lines
624 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: pod-fs-rx-volume
labels:
app: pod-fs-rx-volume
spec:
replicas: 3
selector:
matchLabels:
app: pod-fs-rx-volume
template:
metadata:
labels:
app: pod-fs-rx-volume
spec:
containers:
- name: web-server
image: docker.io/library/nginx:latest
imagePullPolicy: IfNotPresent
volumeMounts:
- name: mypvc
mountPath: /var/lib/www/html
volumes:
- name: mypvc
persistentVolumeClaim:
claimName: rbd-pvc
readOnly: false