1 heat_template_version: 2016-04-08
4 Ceph base service. Shared by all Ceph services.
8 description: The Ceph admin client key. Can be created with ceph-authtool --gen-print-key.
12 description: The Ceph client key. Can be created with ceph-authtool --gen-print-key. Currently only used for external Ceph deployments to create the openstack user keyring.
20 description: The Ceph cluster FSID. Must be a UUID.
27 CinderBackupRbdPoolName:
39 # DEPRECATED options for compatibility with overcloud.yaml
40 # This should be removed and manipulation of the ControllerServices list
41 # used instead, but we need client support for that first
42 ControllerEnableCephStorage:
44 description: Whether to deploy Ceph Storage (OSD) on the Controller
49 description: Do not use deprecated params, they will be removed.
51 - ControllerEnableCephStorage
55 description: Role data for the Ceph base service.
57 service_name: ceph_base
59 tripleo::profile::base::ceph::ceph_ipv6: {get_param: CephIPv6}
60 tripleo::profile::base::ceph::enable_ceph_storage: {get_param: ControllerEnableCephStorage}
61 ceph::profile::params::osd_pool_default_min_size: 1
62 ceph::profile::params::osds: {/srv/data: {}}
63 ceph::profile::params::manage_repo: false
64 ceph::profile::params::authentication_type: cephx
65 ceph::profile::params::fsid: {get_param: CephClusterFSID}
66 ceph::profile::params::client_keys:
76 client.bootstrap-osd: {
78 keyring_path: '/var/lib/ceph/bootstrap-osd/ceph.keyring',
79 cap_mon: 'allow profile bootstrap-osd'
85 cap_osd: 'allow class-read object_prefix rbd_children, allow rwx pool=CINDER_POOL, allow rwx pool=CINDERBACKUP_POOL, allow rwx pool=NOVA_POOL, allow rwx pool=GLANCE_POOL, allow rwx pool=GNOCCHI_POOL'
89 CLIENT_USER: {get_param: CephClientUserName}
90 CLIENT_KEY: {get_param: CephClientKey}
91 ADMIN_KEY: {get_param: CephAdminKey}
92 NOVA_POOL: {get_param: NovaRbdPoolName}
93 CINDER_POOL: {get_param: CinderRbdPoolName}
94 CINDERBACKUP_POOL: {get_param: CinderBackupRbdPoolName}
95 GLANCE_POOL: {get_param: GlanceRbdPoolName}
96 GNOCCHI_POOL: {get_param: GnocchiRbdPoolName}