mirror of
https://github.com/jcwimer/kubernetes-ansible
synced 2026-05-02 18:08:40 +00:00
Added rook-ceph manual deployments
This commit is contained in:
22
rook/storageclass.yaml
Normal file
22
rook/storageclass.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
apiVersion: ceph.rook.io/v1beta1
|
||||
kind: Pool
|
||||
metadata:
|
||||
name: replicapool
|
||||
namespace: rook-ceph
|
||||
spec:
|
||||
replicated:
|
||||
size: 3
|
||||
---
|
||||
apiVersion: storage.k8s.io/v1
|
||||
kind: StorageClass
|
||||
metadata:
|
||||
name: rook-ceph-block
|
||||
provisioner: ceph.rook.io/block
|
||||
parameters:
|
||||
pool: replicapool
|
||||
# The value of "clusterNamespace" MUST be the same as the one in which your rook cluster exist
|
||||
clusterNamespace: rook-ceph
|
||||
# Specify the filesystem type of the volume. If not specified, it will use `ext4`.
|
||||
fstype: xfs
|
||||
# Optional, default reclaimPolicy is "Delete". Other options are: "Retain", "Recycle" as documented in https://kubernetes.io/docs/concepts/storage/storage-classes/
|
||||
reclaimPolicy: Retain
|
||||
Reference in New Issue
Block a user