ansible-kubernetes-hetzner/vars/k8s_cluster/storage/rook_ceph.yml

34 lines
979 B
YAML

######################################
# rook-ceph vars for storage #
######################################
namespace: 'rook-ceph'
CLIENT_CHECKER_NAME: 'client.healthchecker'
RGW_POOL_PREFIX: 'default'
rook_external:
csi_rbd_provisioner_secret: ""
csi_rbd_node_secret: ""
# possible types:
# - dev (2 mons/ 4 osds - cloud be changed in the rook cluster-test.yml) # ToDO: set variables
# - prod (requires a minimum set of 3 mons)
rook_cluster_type: 'dev'
# prod an dev variables are fixed. Please do not change the name
rook_cluster_configs:
dev:
name: 'my-cluster'
mons: 1
osds: 3
mgrs: 1
prod:
name: 'rook-ceph'
mons: 3
mgrs: 2
############################################################################
# computed varibles -> please don't modify by hand! #
############################################################################
rook_cluster_config: "{{ rook_cluster_configs[rook_cluster_type] }}"