mirror of https://github.com/ceph/ceph-ansible.git
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
---
|
|
# this is only here to let the CI tests know
|
|
# that this scenario is using docker
|
|
docker: True
|
|
|
|
containerized_deployment: True
|
|
cluster: test
|
|
monitor_interface: eth1
|
|
radosgw_interface: eth1
|
|
ceph_mon_docker_subnet: "{{ public_network }}"
|
|
journal_size: 100
|
|
ceph_docker_on_openstack: False
|
|
public_network: "192.168.15.0/24"
|
|
cluster_network: "192.168.16.0/24"
|
|
osd_scenario: collocated
|
|
osd_objectstore: filestore
|
|
# OSD_FORCE_ZAP is only for Jewel, the function does not exist anymore on Luminous and above
|
|
ceph_osd_docker_prepare_env: -e OSD_JOURNAL_SIZE={{ journal_size }} -e OSD_FORCE_ZAP=1
|
|
devices:
|
|
- /dev/sda
|
|
- /dev/sdb
|
|
ceph_osd_docker_run_script_path: /var/tmp
|
|
rgw_override_bucket_index_max_shards: 16
|
|
rgw_bucket_default_quota_max_objects: 1638400
|
|
ceph_conf_overrides:
|
|
global:
|
|
osd_pool_default_pg_num: 8
|
|
osd_pool_default_size: 1
|
|
user_config: True
|
|
test:
|
|
name: "test"
|
|
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: "replicated"
|
|
erasure_profile: ""
|
|
size: ""
|
|
test2:
|
|
name: "test2"
|
|
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: "replicated"
|
|
erasure_profile: ""
|
|
size: ""
|
|
pools:
|
|
- "{{ test }}"
|
|
- "{{ test2 }}"
|