mirror of https://github.com/ceph/ceph-ansible.git
40 lines
1009 B
Plaintext
40 lines
1009 B
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
|
||
|
radosgw_interface: eth1
|
||
|
ceph_mon_docker_subnet: "{{ public_network }}"
|
||
|
ceph_docker_on_openstack: False
|
||
|
public_network: "192.168.17.0/24"
|
||
|
cluster_network: "192.168.18.0/24"
|
||
|
rgw_override_bucket_index_max_shards: 16
|
||
|
rgw_bucket_default_quota_max_objects: 1638400
|
||
|
ceph_conf_overrides:
|
||
|
global:
|
||
|
osd_pool_default_size: 1
|
||
|
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: 1
|
||
|
erasure_profile: ""
|
||
|
expected_num_objects: ""
|
||
|
size: 1
|
||
|
openstack_cinder_pool:
|
||
|
name: "volumes"
|
||
|
pg_num: "{{ osd_pool_default_pg_num }}"
|
||
|
pgp_num: "{{ osd_pool_default_pg_num }}"
|
||
|
rule_name: "HDD"
|
||
|
type: 1
|
||
|
erasure_profile: ""
|
||
|
expected_num_objects: ""
|
||
|
size: 1
|
||
|
openstack_pools:
|
||
|
- "{{ openstack_glance_pool }}"
|
||
|
- "{{ openstack_cinder_pool }}"
|