mirror of https://github.com/ceph/ceph-ansible.git
ceph-defaults: move cephfs vars from the ceph-mon role
We're doing this so we can validate this in the ceph-validate role Signed-off-by: Andrew Schoen <aschoen@redhat.com>pull/2619/head
parent
ffe05872ac
commit
1f15a81c48
|
@ -336,6 +336,17 @@ monitor_address_block: subnet
|
|||
ip_version: ipv4
|
||||
mon_use_fqdn: false # if set to true, the MON name used will be the fqdn in the ceph.conf
|
||||
|
||||
##########
|
||||
# CEPHFS #
|
||||
##########
|
||||
cephfs: cephfs # name of the ceph filesystem
|
||||
cephfs_data: cephfs_data # name of the data pool for a given filesystem
|
||||
cephfs_metadata: cephfs_metadata # name of the metadata pool for a given filesystem
|
||||
|
||||
cephfs_pools:
|
||||
- { name: "{{ cephfs_data }}", pgs: "" }
|
||||
- { name: "{{ cephfs_metadata }}", pgs: "" }
|
||||
|
||||
## OSD options
|
||||
#
|
||||
journal_size: 5120 # OSD journal size in MB
|
||||
|
|
|
@ -29,18 +29,6 @@ calamari: false
|
|||
calamari_debug: false
|
||||
|
||||
|
||||
##########
|
||||
# CEPHFS #
|
||||
##########
|
||||
cephfs: cephfs # name of the ceph filesystem
|
||||
cephfs_data: cephfs_data # name of the data pool for a given filesystem
|
||||
cephfs_metadata: cephfs_metadata # name of the metadata pool for a given filesystem
|
||||
|
||||
cephfs_pools:
|
||||
- { name: "{{ cephfs_data }}", pgs: "" }
|
||||
- { name: "{{ cephfs_metadata }}", pgs: "" }
|
||||
|
||||
|
||||
###############
|
||||
# CRUSH RULES #
|
||||
###############
|
||||
|
|
Loading…
Reference in New Issue