mirror of https://github.com/ceph/ceph-ansible.git
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
---
|
|
ceph_origin: repository
|
|
ceph_repository: community
|
|
cluster: test
|
|
public_network: "192.168.1.0/24"
|
|
cluster_network: "192.168.2.0/24"
|
|
radosgw_interface: eth1
|
|
ceph_conf_overrides:
|
|
global:
|
|
osd_pool_default_size: 1
|
|
nfs_ganesha_stable: true
|
|
nfs_ganesha_dev: false
|
|
nfs_ganesha_stable_branch: V2.5-stable
|
|
nfs_ganesha_flavor: "ceph_master"
|
|
devices:
|
|
- '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001'
|
|
- '/dev/sdb'
|
|
dedicated_devices:
|
|
- '/dev/sdc'
|
|
- '/dev/sdc'
|
|
openstack_config: True
|
|
openstack_glance_pool:
|
|
name: "images"
|
|
pg_num: "{{ hostvars[groups[mon_group_name][0]]['osd_pool_default_pg_num'] }}"
|
|
pgp_num: "{{ hostvars[groups[mon_group_name][0]]['osd_pool_default_pg_num'] }}"
|
|
rule_name: "HDD"
|
|
type: 1
|
|
erasure_profile: ""
|
|
expected_num_objects: ""
|
|
openstack_cinder_pool:
|
|
name: "volumes"
|
|
pg_num: "{{ hostvars[groups[mon_group_name][0]]['osd_pool_default_pg_num'] }}"
|
|
pgp_num: "{{ hostvars[groups[mon_group_name][0]]['osd_pool_default_pg_num'] }}"
|
|
rule_name: "HDD"
|
|
type: 1
|
|
erasure_profile: ""
|
|
expected_num_objects: ""
|
|
openstack_pools:
|
|
- "{{ openstack_glance_pool }}"
|
|
- "{{ openstack_cinder_pool }}" |