mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 02:10:21 +00:00
23 lines
403 B
YAML
23 lines
403 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: cephfs2
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: cephfs-rw
|
||
|
image: kubernetes/pause
|
||
|
volumeMounts:
|
||
|
- mountPath: "/mnt/cephfs"
|
||
|
name: cephfs
|
||
|
volumes:
|
||
|
- name: cephfs
|
||
|
cephfs:
|
||
|
monitors:
|
||
|
- 10.16.154.78:6789
|
||
|
- 10.16.154.82:6789
|
||
|
- 10.16.154.83:6789
|
||
|
user: admin
|
||
|
secretRef:
|
||
|
name: ceph-secret
|
||
|
readOnly: true
|