Merge "Puppet / Compute: allow to run Ephemeral only storage with RBD"
[apex-tripleo-heat-templates.git] / puppet / cinder-storage.yaml
1 heat_template_version: 2015-04-30
2 description: 'OpenStack cinder storage configured by Puppet'
3 parameters:
4   Image:
5     default: overcloud-cinder-volume
6     type: string
7   CinderEnableIscsiBackend:
8     default: true
9     description: Whether to enable or not the Iscsi backend for Cinder
10     type: boolean
11   CinderISCSIHelper:
12     default: tgtadm
13     description: The iSCSI helper to use with cinder.
14     type: string
15   CinderLVMLoopDeviceSize:
16     default: 5000
17     description: The size of the loopback file used by the cinder LVM driver.
18     type: number
19   CinderPassword:
20     default: unset
21     description: The password for the cinder service and db account, used by cinder-api.
22     type: string
23     hidden: true
24   Debug:
25     default: ''
26     description: Set to True to enable debugging on all services.
27     type: string
28   VirtualIP: # deprecated. Use per service VIPs instead.
29     default: ''
30     type: string
31   ExtraConfig:
32     default: {}
33     description: |
34       Additional hiera configuration to inject into the cluster. Note
35       that BlockStorageExtraConfig takes precedence over ExtraConfig.
36     type: json
37   BlockStorageExtraConfig:
38     default: {}
39     description: |
40       Role specific additional hiera configuration to inject into the cluster.
41     type: json
42   Flavor:
43     description: Flavor for block storage nodes to request when deploying.
44     type: string
45     constraints:
46       - custom_constraint: nova.flavor
47   GlancePort:
48     default: "9292"
49     description: Glance port.
50     type: string
51   GlanceProtocol:
52     default: http
53     description: Protocol to use when connecting to glance, set to https for SSL.
54     type: string
55   KeyName:
56     default: default
57     description: Name of an existing EC2 KeyPair to enable SSH access to the instances
58     type: string
59   RabbitPassword:
60     default: 'guest'
61     type: string
62     hidden: true
63   RabbitUserName:
64     default: 'guest'
65     type: string
66   RabbitClientUseSSL:
67     default: false
68     description: >
69         Rabbit client subscriber parameter to specify
70         an SSL connection to the RabbitMQ host.
71     type: string
72   RabbitClientPort:
73     default: 5672
74     description: Set rabbit subscriber port, change this if using SSL
75     type: number
76   SnmpdReadonlyUserName:
77     default: ro_snmp_user
78     description: The user name for SNMPd with readonly rights running on all Overcloud nodes
79     type: string
80   SnmpdReadonlyUserPassword:
81     default: unset
82     description: The user password for SNMPd with readonly rights running on all Overcloud nodes
83     type: string
84     hidden: true
85   NtpServer:
86     type: string
87     default: ''
88   EnablePackageInstall:
89     default: 'false'
90     description: Set to true to enable package installation via Puppet
91     type: boolean
92   UpdateIdentifier:
93     default: ''
94     type: string
95     description: >
96       Setting to a previously unused value during stack-update will trigger
97       package update on all nodes
98   Hostname:
99     type: string
100     default: '' # Defaults to Heat created hostname
101   ServiceNetMap:
102     default: {}
103     description: Mapping of service_name -> network name. Typically set
104                  via parameter_defaults in the resource registry.
105     type: json
106   GlanceApiVirtualIP:
107     type: string
108     default: ''
109   MysqlVirtualIP:
110     type: string
111     default: ''
112
113 resources:
114   BlockStorage:
115     type: OS::Nova::Server
116     properties:
117       image:
118         {get_param: Image}
119       flavor: {get_param: Flavor}
120       key_name: {get_param: KeyName}
121       networks:
122         - network: ctlplane
123       user_data_format: SOFTWARE_CONFIG
124       user_data: {get_resource: UserData}
125       name: {get_param: Hostname}
126
127   # Combine the NodeAdminUserData and NodeUserData mime archives
128   UserData:
129     type: OS::Heat::MultipartMime
130     properties:
131       parts:
132       - config: {get_resource: NodeAdminUserData}
133         type: multipart
134       - config: {get_resource: NodeUserData}
135         type: multipart
136
137   # Creates the "heat-admin" user if configured via the environment
138   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
139   NodeAdminUserData:
140     type: OS::TripleO::NodeAdminUserData
141
142   # For optional operator additional userdata
143   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
144   NodeUserData:
145     type: OS::TripleO::NodeUserData
146
147   InternalApiPort:
148     type: OS::TripleO::BlockStorage::Ports::InternalApiPort
149     properties:
150       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
151
152   StoragePort:
153     type: OS::TripleO::BlockStorage::Ports::StoragePort
154     properties:
155       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
156
157   StorageMgmtPort:
158     type: OS::TripleO::BlockStorage::Ports::StorageMgmtPort
159     properties:
160       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
161
162   NetworkConfig:
163     type: OS::TripleO::BlockStorage::Net::SoftwareConfig
164     properties:
165       ControlPlaneIp: {get_attr: [BlockStorage, networks, ctlplane, 0]}
166       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
167       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
168       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
169
170   NetIpMap:
171     type: OS::TripleO::Network::Ports::NetIpMap
172     properties:
173       ControlPlaneIp: {get_attr: [BlockStorage, networks, ctlplane, 0]}
174       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
175       StorageIp: {get_attr: [StoragePort, ip_address]}
176       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
177
178   NetworkDeployment:
179     type: OS::TripleO::SoftwareDeployment
180     properties:
181       config: {get_resource: NetworkConfig}
182       server: {get_resource: BlockStorage}
183
184   BlockStorageDeployment:
185     type: OS::Heat::StructuredDeployment
186     depends_on: NetworkDeployment
187     properties:
188       server: {get_resource: BlockStorage}
189       config: {get_resource: BlockStorageConfig}
190       input_values:
191         debug: {get_param: Debug}
192         cinder_dsn: {list_join: ['', ['mysql://cinder:', {get_param: CinderPassword}, '@', {get_param: MysqlVirtualIP} , '/cinder']]}
193         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
194         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
195         cinder_lvm_loop_device_size:
196           str_replace:
197             template: sizeM
198             params:
199               size: {get_param: CinderLVMLoopDeviceSize}
200         cinder_enable_iscsi_backend: {get_param: CinderEnableIscsiBackend}
201         cinder_iscsi_helper: {get_param: CinderISCSIHelper}
202         cinder_iscsi_ip_address: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CinderIscsiNetwork]}]}
203         glance_api_servers:
204           list_join:
205             - ''
206             - - {get_param: GlanceProtocol}
207               - '://'
208               - {get_param: GlanceApiVirtualIP}
209               - ':'
210               - {get_param: GlancePort}
211         rabbit_username: {get_param: RabbitUserName}
212         rabbit_password: {get_param: RabbitPassword}
213         rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
214         rabbit_client_port: {get_param: RabbitClientPort}
215         ntp_servers:
216           str_replace:
217             template: '["server"]'
218             params:
219               server: {get_param: NtpServer}
220         enable_package_install: {get_param: EnablePackageInstall}
221         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
222
223   # Map heat metadata into hiera datafiles
224   BlockStorageConfig:
225     type: OS::Heat::StructuredConfig
226     properties:
227       group: os-apply-config
228       config:
229         hiera:
230           hierarchy:
231             - '"%{::uuid}"'
232             - heat_config_%{::deploy_config_name}
233             - volume_extraconfig
234             - extraconfig
235             - volume
236             - all_nodes # provided by allNodesConfig
237             - '"%{::osfamily}"'
238             - common
239           datafiles:
240             common:
241               raw_data: {get_file: hieradata/common.yaml}
242             volume_extraconfig:
243               mapped_data: {get_param: BlockStorageExtraConfig}
244             extraconfig:
245               mapped_data: {get_param: ExtraConfig}
246             volume:
247               raw_data: {get_file: hieradata/volume.yaml}
248               mapped_data:
249                 # Cinder
250                 cinder::debug: {get_input: debug}
251                 cinder::setup_test_volume::size: {get_input: cinder_lvm_loop_device_size}
252                 cinder_iscsi_helper: {get_input: cinder_iscsi_helper}
253                 cinder::database_connection: {get_input: cinder_dsn}
254                 cinder::rabbit_userid: {get_input: rabbit_username}
255                 cinder::rabbit_password: {get_input: rabbit_password}
256                 cinder::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
257                 cinder::rabbit_port: {get_input: rabbit_client_port}
258                 cinder_enable_iscsi_backend: {get_input: cinder_enable_iscsi_backend}
259                 cinder_iscsi_ip_address: {get_input: cinder_iscsi_ip_address}
260                 cinder::glance::glance_api_servers: {get_input: glance_api_servers}
261                 ntp::servers: {get_input: ntp_servers}
262                 tripleo::packages::enable_install: {get_input: enable_package_install}
263                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
264                 snmpd_readonly_user_name: {get_input: snmpd_readonly_user_name}
265                 snmpd_readonly_user_password: {get_input: snmpd_readonly_user_password}
266
267   # Hook for site-specific additional pre-deployment config,
268   # applying to all nodes, e.g node registration/unregistration
269   NodeExtraConfig:
270     depends_on: BlockStorageDeployment
271     type: OS::TripleO::NodeExtraConfig
272     properties:
273         server: {get_resource: BlockStorage}
274
275   UpdateConfig:
276     type: OS::TripleO::Tasks::PackageUpdate
277
278   UpdateDeployment:
279     type: OS::Heat::SoftwareDeployment
280     properties:
281       config: {get_resource: UpdateConfig}
282       server: {get_resource: BlockStorage}
283       input_values:
284         update_identifier:
285           get_param: UpdateIdentifier
286
287 outputs:
288   hosts_entry:
289     value:
290       str_replace:
291         template: "IP HOST.localdomain HOST"
292         params:
293           IP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, BlockStorageHostnameResolveNetwork]}]}
294           HOST: {get_attr: [BlockStorage, name]}
295   nova_server_resource:
296     description: Heat resource handle for the block storage server
297     value:
298       {get_resource: BlockStorage}
299   internal_api_ip_address:
300     description: IP address of the server in the internal_api network
301     value: {get_attr: [InternalApiPort, ip_address]}
302   storage_ip_address:
303     description: IP address of the server in the storage network
304     value: {get_attr: [StoragePort, ip_address]}
305   storage_mgmt_ip_address:
306     description: IP address of the server in the storage_mgmt network
307     value: {get_attr: [StorageMgmtPort, ip_address]}
308   config_identifier:
309     description: identifier which changes if the node configuration may need re-applying
310     value:
311       list_join:
312         - ''
313         - - {get_attr: [BlockStorageDeployment, deploy_stdout]}
314           - {get_param: UpdateIdentifier}