mirror of https://github.com/ceph/ceph-ansible.git
36 lines
774 B
Plaintext
36 lines
774 B
Plaintext
---
|
|
cephfs_pools:
|
|
- { name: "{{ cephfs_data }}", pgs: "8" }
|
|
- { name: "{{ cephfs_metadata }}", pgs: "8" }
|
|
|
|
create_crush_tree: True
|
|
crush_rule_config: True
|
|
crush_rule_hdd:
|
|
name: HDD
|
|
root: HDD
|
|
type: host
|
|
default: true
|
|
crush_rules:
|
|
- "{{ crush_rule_hdd }}"
|
|
|
|
openstack_config: True
|
|
openstack_glance_pool:
|
|
name: "images"
|
|
pg_num: "{{ osd_pool_default_pg_num }}"
|
|
pgp_num: "{{ osd_pool_default_pg_num }}"
|
|
rule_name: "HDD"
|
|
type: "replicated"
|
|
erasure_profile: ""
|
|
size: ""
|
|
openstack_cinder_pool:
|
|
name: "volumes"
|
|
pg_num: "{{ osd_pool_default_pg_num }}"
|
|
pgp_num: "{{ osd_pool_default_pg_num }}"
|
|
rule_name: "HDD"
|
|
type: "replicated"
|
|
erasure_profile: ""
|
|
size: ""
|
|
openstack_pools:
|
|
- "{{ openstack_glance_pool }}"
|
|
- "{{ openstack_cinder_pool }}"
|