Merge "Add Satellite 5 support"
[apex-tripleo-heat-templates.git] / puppet / extraconfig / ceph / ceph-external-config.yaml
1 heat_template_version: 2015-04-30
2 description: 'Configure parameters for an external Ceph cluster via Puppet.'
3
4 parameters:
5   ceph_storage_count:
6     default: 0
7     type: number
8     description: Number of Ceph storage nodes. Used to enable/disable managed Ceph installation.
9   ceph_external_mon_ips:
10     default: ''
11     type: string
12     description: List of external Ceph Mon host IPs.
13   ceph_client_key:
14     default: ''
15     type: string
16     description: Ceph key used to create the 'openstack' user keyring.
17   ceph_fsid:
18     default: ''
19     type: string
20   # The following parameters are unused for external Ceph clusters and
21   # are here and exist for compatibility
22   ceph_admin_key:
23     default: ''
24     type: string
25   ceph_mon_key:
26     default: ''
27     type: string
28   ceph_mon_names:
29     type: comma_delimited_list
30   ceph_mon_ips:
31     type: comma_delimited_list
32   NovaRbdPoolName:
33     default: vms
34     type: string
35   CinderRbdPoolName:
36     default: volumes
37     type: string
38   GlanceRbdPoolName:
39     default: images
40     type: string
41   CephClientUserName:
42     default: openstack
43     type: string
44
45 resources:
46   CephClusterConfigImpl:
47     type: OS::Heat::StructuredConfig
48     properties:
49       group: os-apply-config
50       config:
51         hiera:
52           datafiles:
53             ceph_cluster:
54               mapped_data:
55                 ceph_storage_count: {get_param: ceph_storage_count}
56                 enable_external_ceph: true
57                 ceph::profile::params::mon_host: {get_param: ceph_external_mon_ips}
58                 ceph::profile::params::fsid: {get_param: ceph_fsid}
59                 ceph::profile::params::client_keys:
60                   str_replace:
61                     template: "{
62                       client.CLIENT_USER: {
63                         secret: 'CLIENT_KEY',
64                         mode: '0644',
65                         cap_mon: 'allow r',
66                         cap_osd: 'allow class-read object_prefix rbd_children, allow rwx pool=CINDER_POOL, allow rwx pool=NOVA_POOL, allow rwx pool=GLANCE_POOL'
67                       }
68                     }"
69                     params:
70                       CLIENT_USER: {get_param: CephClientUserName}
71                       CLIENT_KEY: {get_param: ceph_client_key}
72                       NOVA_POOL: {get_param: NovaRbdPoolName}
73                       CINDER_POOL: {get_param: CinderRbdPoolName}
74                       GLANCE_POOL: {get_param: GlanceRbdPoolName}
75                 nova::compute::rbd::libvirt_images_rbd_pool: {get_param: NovaRbdPoolName}
76                 cinder_rbd_pool_name: {get_param: CinderRbdPoolName}
77                 glance::backend::rbd::rbd_store_pool: {get_param: GlanceRbdPoolName}
78                 nova::compute::rbd::libvirt_rbd_user: {get_param: CephClientUserName}
79                 glance::backend::rbd::rbd_store_user: {get_param: CephClientUserName}
80                 nova::compute::rbd::rbd_keyring:
81                   list_join:
82                   - '.'
83                   - - 'client'
84                     - {get_param: CephClientUserName}
85                 ceph_client_user_name: {get_param: CephClientUserName}
86                 ceph_pools:
87                   - {get_param: CinderRbdPoolName}
88                   - {get_param: NovaRbdPoolName}
89                   - {get_param: GlanceRbdPoolName}
90
91 outputs:
92   config_id:
93     description: The ID of the CephClusterConfigImpl resource.
94     value:
95       {get_resource: CephClusterConfigImpl}