mirror of https://github.com/ceph/ceph-ansible.git
95 lines
2.8 KiB
Plaintext
95 lines
2.8 KiB
Plaintext
---
|
|
# Variables here are applicable to all host groups NOT roles
|
|
|
|
# This sample file generated by generate_group_vars_sample.sh
|
|
|
|
# Dummy variable to avoid error because ansible does not recognize the
|
|
# file as a good configuration file when no variable in it.
|
|
dummy:
|
|
|
|
# You can override vars by using host or group vars
|
|
|
|
###########
|
|
# GENERAL #
|
|
###########
|
|
|
|
#fetch_directory: fetch/
|
|
|
|
#mon_group_name: mons
|
|
|
|
# ACTIVATE BOTH FSID AND MONITOR_SECRET VARIABLES FOR NON-VAGRANT DEPLOYMENT
|
|
#fsid: "{{ cluster_uuid.stdout }}"
|
|
#monitor_secret: "{{ monitor_keyring.stdout }}"
|
|
#cephx: true
|
|
|
|
# CephFS
|
|
#cephfs_data: cephfs_data
|
|
#cephfs_metadata: cephfs_metadata
|
|
#cephfs: cephfs
|
|
|
|
# Secure your cluster
|
|
# This will set the following flags on all the pools:
|
|
# * nosizechange
|
|
# * nopgchange
|
|
# * nodelete
|
|
|
|
#secure_cluster: false
|
|
#secure_cluster_flags:
|
|
# - nopgchange
|
|
# - nodelete
|
|
# - nosizechange
|
|
|
|
# Enable the Calamari-backed REST API on a Monitor
|
|
#calamari: false
|
|
|
|
# Enable debugging for Calamari
|
|
#calamari_debug: false
|
|
|
|
#############
|
|
# OPENSTACK #
|
|
#############
|
|
|
|
#openstack_config: false
|
|
#openstack_glance_pool:
|
|
# name: images
|
|
# pg_num: "{{ osd_pool_default_pg_num }}"
|
|
#openstack_cinder_pool:
|
|
# name: volumes
|
|
# pg_num: "{{ osd_pool_default_pg_num }}"
|
|
#openstack_nova_pool:
|
|
# name: vms
|
|
# pg_num: "{{ osd_pool_default_pg_num }}"
|
|
#openstack_cinder_backup_pool:
|
|
# name: backups
|
|
# pg_num: "{{ osd_pool_default_pg_num }}"
|
|
|
|
#openstack_pools:
|
|
# - "{{ openstack_glance_pool }}"
|
|
# - "{{ openstack_cinder_pool }}"
|
|
# - "{{ openstack_nova_pool }}"
|
|
# - "{{ openstack_cinder_backup_pool }}"
|
|
|
|
#openstack_keys:
|
|
# - { name: client.glance, value: "mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ openstack_glance_pool.name }}'" }
|
|
# - { name: client.cinder, value: "mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ openstack_cinder_pool.name }}, allow rwx pool={{ openstack_nova_pool.name }}, allow rx pool={{ openstack_glance_pool.name }}'" }
|
|
# - { name: client.cinder-backup, value: "mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ openstack_cinder_backup_pool.name }}'" }
|
|
|
|
##########
|
|
# DOCKER #
|
|
##########
|
|
#docker_exec_cmd:
|
|
#mon_containerized_deployment: false
|
|
#mon_containerized_deployment_with_kv: false
|
|
# This is currently in ceph-common defaults because it is shared with ceph-nfs
|
|
#mon_containerized_default_ceph_conf_with_kv: false
|
|
#ceph_mon_docker_interface: "{{ monitor_interface }}"
|
|
#ceph_mon_docker_subnet: "{{ public_network }}"# subnet of the ceph_mon_docker_interface
|
|
#ceph_docker_image: "ceph/daemon"
|
|
#ceph_docker_image_tag: latest
|
|
#ceph_mon_docker_extra_env: -e CLUSTER={{ cluster }} -e FSID={{ fsid }} -e MON_NAME={{ monitor_name }}
|
|
#ceph_docker_on_openstack: false
|
|
#mon_docker_privileged: false
|
|
#mon_docker_net_host: true
|
|
#ceph_config_keys: [] # DON'T TOUCH ME
|
|
|