mirror of https://github.com/ceph/ceph-ansible.git
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
---
|
|
# this is only here to let the CI tests know
|
|
# that this scenario is using docker
|
|
docker: True
|
|
|
|
containerized_deployment: True
|
|
monitor_interface: "{{ 'eth1' if ansible_facts['distribution'] == 'CentOS' else 'ens6' }}"
|
|
radosgw_interface: "{{ 'eth1' if ansible_facts['distribution'] == 'CentOS' else 'ens6' }}"
|
|
radosgw_num_instances: 2
|
|
ceph_mon_docker_subnet: "{{ public_network }}"
|
|
ceph_docker_on_openstack: False
|
|
public_network: "192.168.19.0/24"
|
|
cluster_network: "192.168.20.0/24"
|
|
rgw_override_bucket_index_max_shards: 16
|
|
rgw_bucket_default_quota_max_objects: 1638400
|
|
openstack_config: True
|
|
dashboard_enabled: false
|
|
ceph_conf_overrides:
|
|
global:
|
|
osd_pool_default_pg_num: 8
|
|
osd_pool_default_size: 1
|
|
handler_health_mon_check_delay: 10
|
|
handler_health_osd_check_delay: 10
|
|
rgw_create_pools:
|
|
foo:
|
|
pg_num: 16
|
|
type: replicated
|
|
bar:
|
|
pg_num: 16
|
|
ec:
|
|
pg_num: 16
|
|
type: ec
|
|
ec_profile: myecprofile
|
|
ec_k: 2
|
|
ec_m: 1
|
|
osd_objectstore: "bluestore"
|
|
lvm_volumes:
|
|
- data: data-lv1
|
|
data_vg: test_group
|
|
- data: data-lv2
|
|
data_vg: test_group
|
|
db: journal1
|
|
db_vg: journals
|
|
ceph_docker_registry: quay.ceph.io
|
|
ceph_docker_image: ceph-ci/daemon
|
|
ceph_docker_image_tag: latest-nautilus |