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