2016-02-29 23:35:07 +08:00
---
# You can override vars by using host or group vars
###########
# GENERAL #
###########
# Even though RGW nodes should not have the admin key
# at their disposal, some people might want to have it
# distributed on RGW nodes. Setting 'copy_admin_key' to 'true'
# will copy the admin key to the /etc/ceph/ directory
copy_admin_key : false
2016-12-26 10:54:13 +08:00
# Multi-site remote pull URL variables
2018-07-27 23:46:38 +08:00
rgw_pull_port : "{{ radosgw_frontend_port }}"
2017-01-07 22:33:24 +08:00
rgw_pull_proto : "http"
2016-12-26 10:54:13 +08:00
2017-08-18 01:25:20 +08:00
2018-04-16 21:57:23 +08:00
##########
# TUNING #
##########
2017-04-20 00:30:40 +08:00
2017-08-18 01:25:20 +08:00
# To support buckets with a very large number of objects it's
2017-04-20 00:30:40 +08:00
# important to split them into shards. We suggest about 100K
# objects per shard as a conservative maximum.
#rgw_override_bucket_index_max_shards: 16
2017-08-18 01:25:20 +08:00
2017-04-20 00:30:40 +08:00
# Consider setting a quota on buckets so that exceeding this
# limit will require admin intervention.
#rgw_bucket_default_quota_max_objects: 1638400 # i.e., 100K * 16
2017-08-18 01:25:20 +08:00
# This dictionary will create pools with the given number of pgs.
2017-04-20 00:30:40 +08:00
# This is important because they would be created with the default
2017-08-18 01:25:20 +08:00
# of 8.
2017-04-20 00:30:40 +08:00
# New pools and their corresponding pg_nums can be created
2018-05-31 23:01:44 +08:00
# by adding to the rgw_create_pools dictionary (see foo).
#rgw_create_pools:
2017-04-20 00:30:40 +08:00
# defaults.rgw.buckets.data:
# pg_num: 16
# defaults.rgw.buckets.index:
# pg_num: 32
# foo:
# pg_num: 4
2017-08-18 01:25:20 +08:00
2016-02-29 23:35:07 +08:00
##########
# DOCKER #
##########
2017-09-06 16:53:30 +08:00
# Resource limitation
# For the whole list of limits you can apply see: docs.docker.com/engine/admin/resource_constraints
# Default values are based from: https://access.redhat.com/documentation/en-us/red_hat_ceph_storage/2/html/red_hat_ceph_storage_hardware_guide/minimum_recommendations
# These options can be passed using the 'ceph_rgw_docker_extra_env' variable.
ceph_rgw_docker_memory_limit : 1g
ceph_rgw_docker_cpu_limit : 1
2017-08-18 01:25:20 +08:00
ceph_rgw_docker_extra_env :
2016-11-03 17:16:33 +08:00
ceph_config_keys : [ ] # DON'T TOUCH ME
2016-12-01 06:47:51 +08:00
rgw_config_keys : "/" # DON'T TOUCH ME
2017-07-05 21:47:48 +08:00
2018-04-16 21:57:23 +08:00
#############
# MULTISITE #
#############
rgw_multisite : false
rgw_zonegroup : ""
rgw_zone : ""
2017-07-05 21:47:48 +08:00
###########
# SYSTEMD #
###########
# ceph_rgw_systemd_overrides will override the systemd settings
# for the ceph-rgw services.
# For example,to set "PrivateDevices=false" you can specify:
#ceph_rgw_systemd_overrides:
# Service:
# PrivateDevices: False