Merge "Enable predictable IPs on non-controllers"
[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   CephIPv6:
45     default: False
46     type: boolean
47
48 resources:
49   CephClusterConfigImpl:
50     type: OS::Heat::StructuredConfig
51     properties:
52       group: os-apply-config
53       config:
54         hiera:
55           datafiles:
56             ceph_cluster:
57               mapped_data:
58                 ceph_storage_count: {get_param: ceph_storage_count}
59                 enable_external_ceph: true
60                 ceph_ipv6: {get_param: CephIPv6}
61                 ceph_mon_host: {get_param: ceph_external_mon_ips}
62                 ceph_mon_host_v6: {get_param: ceph_external_mon_ips}
63                 ceph::profile::params::fsid: {get_param: ceph_fsid}
64                 ceph::profile::params::client_keys:
65                   str_replace:
66                     template: "{
67                       client.CLIENT_USER: {
68                         secret: 'CLIENT_KEY',
69                         mode: '0644',
70                         cap_mon: 'allow r',
71                         cap_osd: 'allow class-read object_prefix rbd_children, allow rwx pool=CINDER_POOL, allow rwx pool=NOVA_POOL, allow rwx pool=GLANCE_POOL'
72                       }
73                     }"
74                     params:
75                       CLIENT_USER: {get_param: CephClientUserName}
76                       CLIENT_KEY: {get_param: ceph_client_key}
77                       NOVA_POOL: {get_param: NovaRbdPoolName}
78                       CINDER_POOL: {get_param: CinderRbdPoolName}
79                       GLANCE_POOL: {get_param: GlanceRbdPoolName}
80                 ceph::profile::params::ms_bind_ipv6: {get_param: CephIPv6}
81                 nova::compute::rbd::libvirt_images_rbd_pool: {get_param: NovaRbdPoolName}
82                 cinder_rbd_pool_name: {get_param: CinderRbdPoolName}
83                 glance::backend::rbd::rbd_store_pool: {get_param: GlanceRbdPoolName}
84                 nova::compute::rbd::libvirt_rbd_user: {get_param: CephClientUserName}
85                 glance::backend::rbd::rbd_store_user: {get_param: CephClientUserName}
86                 nova::compute::rbd::rbd_keyring:
87                   list_join:
88                   - '.'
89                   - - 'client'
90                     - {get_param: CephClientUserName}
91                 ceph_client_user_name: {get_param: CephClientUserName}
92                 ceph_pools:
93                   - {get_param: CinderRbdPoolName}
94                   - {get_param: NovaRbdPoolName}
95                   - {get_param: GlanceRbdPoolName}
96
97 outputs:
98   config_id:
99     description: The ID of the CephClusterConfigImpl resource.
100     value:
101       {get_resource: CephClusterConfigImpl}