mirror of https://github.com/ceph/ceph-ansible.git
64 lines
1.9 KiB
Plaintext
64 lines
1.9 KiB
Plaintext
---
|
|
# You can override vars by using host or group vars
|
|
# Variables here are applicable to all host groups NOT roles
|
|
|
|
# Dummy variable to avoid error because ansible does not recognize the file as a good configuration file when no variable in it.
|
|
dummy:
|
|
|
|
###########
|
|
# GENERAL #
|
|
###########
|
|
|
|
# ACTIVATE BOTH FSID AND MONITOR_SECRET VARIABLES FOR NON-VAGRANT DEPLOYMENT
|
|
#fsid: "{{ cluster_uuid.stdout }}"
|
|
#monitor_secret: "{{ monitor_keyring.stdout }}"
|
|
#cephx: true
|
|
|
|
# CephFS
|
|
#pool_default_pg_num: 128
|
|
#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
|
|
#
|
|
|
|
#fetch_directory: fetch/
|
|
|
|
#############
|
|
# OPENSTACK #
|
|
#############
|
|
|
|
#openstack_config: false
|
|
#openstack_glance_pool: images
|
|
#openstack_cinder_pool: volumes
|
|
#openstack_nova_pool: vms
|
|
#openstack_cinder_backup_pool: backups
|
|
#
|
|
#openstack_keys:
|
|
# - { name: client.glance, value: "mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ openstack_glance_pool }}'" }
|
|
# - { name: client.cinder, value: "mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ openstack_cinder_pool }}, allow rwx pool={{ openstack_nova_pool }}, allow rx pool={{ openstack_glance_pool }}'" }
|
|
# - { name: client.cinder-backup, value: "mon 'allow r' osd 'allow class-read object_prefix rbd_children, allow rwx pool={{ openstack_cinder_backup_pool }}'" }
|
|
|
|
|
|
##########
|
|
# DOCKER #
|
|
##########
|
|
|
|
#ceph_containerized_deployment: false
|
|
#ceph_mon_docker_username: ceph
|
|
#ceph_mon_docker_imagename: "daemon"
|
|
#ceph_mon_docker_interface: eth0
|
|
#ceph_mon_docker_subnet: # subnet of the ceph_mon_docker_interface
|
|
#ceph_mon_extra_envs: "MON_NAME={{ ansible_hostname }}" # comma separated variables
|