You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
apiVersion: ceph.rook.io/v1
|
|
kind: CephBlockPool
|
|
metadata:
|
|
name: replicapool
|
|
namespace: rook-ceph
|
|
spec:
|
|
replicated:
|
|
size: 1
|
|
---
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: rook-ceph-block
|
|
annotations:
|
|
storageclass.kubernetes.io/is-default-class: "true"
|
|
provisioner: ceph.rook.io/block
|
|
parameters:
|
|
blockPool: replicapool
|
|
# Specify the namespace of the rook cluster from which to create volumes.
|
|
# If not specified, it will use `rook` as the default namespace of the cluster.
|
|
# This is also the namespace where the cluster will be
|
|
clusterNamespace: rook-ceph
|
|
# Specify the filesystem type of the volume. If not specified, it will use `ext4`.
|
|
fstype: xfs
|
|
# (Optional) Specify an existing Ceph user that will be used for mounting storage with this StorageClass.
|
|
#mountUser: user1
|
|
# (Optional) Specify an existing Kubernetes secret name containing just one key holding the Ceph user secret.
|
|
# The secret must exist in each namespace(s) where the storage will be consumed.
|
|
#mountSecret: ceph-user1-secret
|
|
|