mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
vendor files
This commit is contained in:
1
vendor/k8s.io/kubernetes/examples/volumes/cephfs/README.md
generated
vendored
Normal file
1
vendor/k8s.io/kubernetes/examples/volumes/cephfs/README.md
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
This file has moved to [https://github.com/kubernetes/examples/blob/master/staging/volumes/cephfs/README.md](https://github.com/kubernetes/examples/blob/master/staging/volumes/cephfs/README.md)
|
22
vendor/k8s.io/kubernetes/examples/volumes/cephfs/cephfs-with-secret.yaml
generated
vendored
Normal file
22
vendor/k8s.io/kubernetes/examples/volumes/cephfs/cephfs-with-secret.yaml
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
23
vendor/k8s.io/kubernetes/examples/volumes/cephfs/cephfs.yaml
generated
vendored
Normal file
23
vendor/k8s.io/kubernetes/examples/volumes/cephfs/cephfs.yaml
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
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
|
||||
# by default the path is /, but you can override and mount a specific path of the filesystem by using the path attribute
|
||||
# path: /some/path/in/side/cephfs
|
||||
user: admin
|
||||
secretFile: "/etc/ceph/admin.secret"
|
||||
readOnly: true
|
6
vendor/k8s.io/kubernetes/examples/volumes/cephfs/secret/ceph-secret.yaml
generated
vendored
Normal file
6
vendor/k8s.io/kubernetes/examples/volumes/cephfs/secret/ceph-secret.yaml
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: ceph-secret
|
||||
data:
|
||||
key: QVFCMTZWMVZvRjVtRXhBQTVrQ1FzN2JCajhWVUxSdzI2Qzg0SEE9PQ==
|
Reference in New Issue
Block a user