Adds network/cidr mapping into a new service property
[apex-tripleo-heat-templates.git] / puppet / services / ceph-base.yaml
1 heat_template_version: pike
2
3 description: >
4   Ceph base service. Shared by all Ceph services.
5
6 parameters:
7   # NOTE(gfidente): needs a default to cope with external Ceph deployments were we don't pass (and need) an Admin key
8   CephAdminKey:
9     default: ''
10     description: The Ceph admin client key. Can be created with ceph-authtool --gen-print-key.
11     type: string
12     hidden: true
13   CephClientKey:
14     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.
15     type: string
16     hidden: true
17   CephClientUserName:
18     default: openstack
19     type: string
20   CephClusterFSID:
21     type: string
22     description: The Ceph cluster FSID. Must be a UUID.
23   CinderRbdPoolName:
24     default: volumes
25     type: string
26   CinderBackupRbdPoolName:
27     default: backups
28     type: string
29   GlanceRbdPoolName:
30     default: images
31     type: string
32   GnocchiRbdPoolName:
33     default: metrics
34     type: string
35   NovaRbdPoolName:
36     default: vms
37     type: string
38   ServiceData:
39     default: {}
40     description: Dictionary packing service data
41     type: json
42   ServiceNetMap:
43     default: {}
44     description: Mapping of service_name -> network name. Typically set
45                  via parameter_defaults in the resource registry.  This
46                  mapping overrides those in ServiceNetMapDefaults.
47     type: json
48   DefaultPasswords:
49     default: {}
50     type: json
51   RoleName:
52     default: ''
53     description: Role name on which the service is applied
54     type: string
55   RoleParameters:
56     default: {}
57     description: Parameters specific to the role
58     type: json
59   EndpointMap:
60     default: {}
61     description: Mapping of service endpoint -> protocol. Typically set
62                  via parameter_defaults in the resource registry.
63     type: json
64   # DEPRECATED options for compatibility with overcloud.yaml
65   # This should be removed and manipulation of the ControllerServices list
66   # used instead, but we need client support for that first
67   ControllerEnableCephStorage:
68     default: false
69     description: Whether to deploy Ceph Storage (OSD) on the Controller
70     type: boolean
71
72 parameter_groups:
73 - label: deprecated
74   description: Do not use deprecated params, they will be removed.
75   parameters:
76   - ControllerEnableCephStorage
77
78 outputs:
79   role_data:
80     description: Role data for the Ceph base service.
81     value:
82       service_name: ceph_base
83       config_settings:
84         tripleo::profile::base::ceph::enable_ceph_storage: {get_param: ControllerEnableCephStorage}
85         ceph::profile::params::osds: {/srv/data: {}}
86         ceph::profile::params::manage_repo: false
87         ceph::profile::params::authentication_type: cephx
88         ceph::profile::params::fsid: {get_param: CephClusterFSID}
89         # FIXME(gfidente): we should not have to list the packages explicitly in the templates,
90         # but this has to stay until https://bugs.launchpad.net/puppet-ceph/+bug/1629933 is fixed
91         ceph::params::packages:
92           - ceph-base
93           - ceph-mon
94           - ceph-osd
95         # NOTE: bind IP is found in Heat replacing the network name with the local node IP
96         # for the given network; replacement examples (eg. for internal_api):
97         # internal_api -> IP
98         # internal_api_uri -> [IP]
99         # internal_api_subnet - > IP/CIDR
100         ceph::profile::params::cluster_network:
101           str_replace:
102             template: "NETWORK_subnet"
103             params:
104               NETWORK: {get_param: [ServiceNetMap, CephClusterNetwork]}
105         ceph::profile::params::public_network:
106           str_replace:
107             template: "NETWORK_subnet"
108             params:
109               NETWORK: {get_param: [ServiceNetMap, CephMonNetwork]}
110         ceph::profile::params::public_addr: {get_param: [ServiceNetMap, CephMonNetwork]}
111         ceph::profile::params::client_keys:
112           map_replace:
113             - client.admin:
114                 secret: {get_param: CephAdminKey}
115                 mode: '0600'
116                 cap_mon: 'allow *'
117                 cap_osd: 'allow *'
118                 cap_mds: 'allow *'
119               client.bootstrap-osd:
120                 secret: {get_param: CephAdminKey}
121                 keyring_path: '/var/lib/ceph/bootstrap-osd/ceph.keyring'
122                 cap_mon: 'allow profile bootstrap-osd'
123               CEPH_CLIENT_KEY:
124                 secret: {get_param: CephClientKey}
125                 mode: '0644'
126                 cap_mon: 'allow r'
127                 cap_osd:
128                   str_replace:
129                     template: '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'
130                     params:
131                       NOVA_POOL: {get_param: NovaRbdPoolName}
132                       CINDER_POOL: {get_param: CinderRbdPoolName}
133                       CINDERBACKUP_POOL: {get_param: CinderBackupRbdPoolName}
134                       GLANCE_POOL: {get_param: GlanceRbdPoolName}
135                       GNOCCHI_POOL: {get_param: GnocchiRbdPoolName}
136             - keys:
137                 CEPH_CLIENT_KEY:
138                   list_join: ['.', ['client', {get_param: CephClientUserName}]]