mirror of https://github.com/ceph/ceph-ansible.git
17 lines
490 B
Plaintext
17 lines
490 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' if ansible_distribution == 'CentOS' else 'ens6' }}"
|
|
ceph_mon_docker_subnet: "{{ public_network }}"
|
|
ceph_docker_on_openstack: False
|
|
public_network: "192.168.73.0/24"
|
|
cluster_network: "192.168.74.0/24"
|
|
ceph_conf_overrides:
|
|
global:
|
|
osd_pool_default_size: 1
|
|
openstack_config: False
|
|
dashboard_enabled: False
|
|
copy_admin_key: True |