mirror of https://github.com/ceph/ceph-ansible.git
33 lines
883 B
Plaintext
33 lines
883 B
Plaintext
---
|
|
|
|
ceph_origin: repository
|
|
ceph_repository: community
|
|
public_network: "192.168.39.0/24"
|
|
cluster_network: "192.168.40.0/24"
|
|
monitor_interface: "{{ 'eth1' if ansible_facts['distribution'] == 'CentOS' else 'ens6' }}"
|
|
copy_admin_key: true
|
|
# test-volume is created by tests/functional/lvm_setup.yml from /dev/sdb
|
|
os_tuning_params:
|
|
- { name: fs.file-max, value: 26234859 }
|
|
ceph_conf_overrides:
|
|
global:
|
|
mon_allow_pool_size_one: true
|
|
mon_warn_on_pool_no_redundancy: false
|
|
osd_pool_default_size: 1
|
|
dashboard_enabled: False
|
|
handler_health_mon_check_delay: 10
|
|
handler_health_osd_check_delay: 10
|
|
openstack_config: True
|
|
openstack_glance_pool:
|
|
name: "images"
|
|
type: 3
|
|
size: 1
|
|
application: rbd
|
|
target_size_ratio: 0.2
|
|
openstack_cinder_pool:
|
|
name: "volumes"
|
|
size: 1
|
|
application: rbd
|
|
openstack_pools:
|
|
- "{{ openstack_glance_pool }}"
|
|
- "{{ openstack_cinder_pool }}" |