mirror of https://github.com/ceph/ceph-ansible.git
16 lines
558 B
Plaintext
16 lines
558 B
Plaintext
---
|
|
# THIS FILE IS AN EXAMPLE THAT CONTAINS A SET OF VARIABLE FOR A PARTICULAR PURPOSE
|
|
# GOAL: CONFIGURE RADOS GATEWAY WITH USAGE LOG
|
|
#
|
|
# The following variables should be added in your group_vars/rgws.yml file
|
|
# The double quotes are important, do NOT remove them.
|
|
|
|
ceph_conf_overrides:
|
|
"client.rgw.{{ rgw_zone }}.{{ hostvars[inventory_hostname]['ansible_facts']['hostname'] }}":
|
|
rgw enable usage log = true
|
|
rgw usage log tick interval = 30
|
|
rgw usage log flush threshold = 1024
|
|
rgw usage max shards = 32
|
|
rgw usage max user shards = 1
|
|
|