mirror of https://github.com/ceph/ceph-ansible.git
25 lines
1.1 KiB
YAML
25 lines
1.1 KiB
YAML
---
|
|
###########
|
|
# GENERAL #
|
|
###########
|
|
|
|
copy_admin_key: false
|
|
|
|
user_config: false
|
|
pools:
|
|
- { name: test, pgs: "{{ ceph_conf_overrides.global.osd_pool_default_pg_num }}" }
|
|
- { name: test2, pgs: "{{ ceph_conf_overrides.global.osd_pool_default_pg_num }}" }
|
|
|
|
# Can add `mds_cap` attribute to override the default value which is '' for mds capabilities.
|
|
# To have have ansible setfacl the generated key for $user, set the acls var like so:
|
|
# acls: ["u:$user:r--"]
|
|
#
|
|
# Generate a keyring using ceph-authtool CLI or python.
|
|
# Eg:
|
|
# $ ceph-authtool --gen-print-key
|
|
# or
|
|
# $ python2 -c "import os ; import struct ; import time; import base64 ; key = os.urandom(16) ; header = struct.pack('<hiih',1,int(time.time()),0,len(key)) ; print base64.b64encode(header + key)"
|
|
keys:
|
|
- { name: client.test, key: "ADD-KEYRING-HERE==", mon_cap: "allow r", osd_cap: "allow class-read object_prefix rbd_children, allow rwx pool=test", mode: "0600", acls: [] }
|
|
- { name: client.test2, key: "ADD-KEYRING-HERE==", mon_cap: "allow r", osd_cap: "allow class-read object_prefix rbd_children, allow rwx pool=test2", mode: "0600", acls: [] }
|