mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-03-13 14:14:21 -04:00
21 lines
402 B
YAML
21 lines
402 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: cephfs
|
|
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
|
|
secretFile: "/etc/ceph/admin.secret"
|
|
readOnly: true
|