mirror of https://github.com/ceph/ceph-ansible.git
21 lines
640 B
Plaintext
21 lines
640 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 }}"
|
|
public_network: "192.168.79.0/24"
|
|
cluster_network: "192.168.80.0/24"
|
|
ceph_conf_overrides:
|
|
global:
|
|
mon_allow_pool_size_one: true
|
|
mon_warn_on_pool_no_redundancy: false
|
|
osd_pool_default_size: 1
|
|
openstack_config: False
|
|
dashboard_enabled: False
|
|
copy_admin_key: True
|
|
ceph_docker_registry: quay.ceph.io
|
|
ceph_docker_image: ceph-ci/daemon
|
|
ceph_docker_image_tag: latest-master |