Merge "Fix allocation pool in external.yaml"
[apex-tripleo-heat-templates.git] / puppet / cinder-storage-puppet.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:
29     default: ''
30     type: string
31   ExtraConfig:
32     default: {}
33     description: |
34       Additional configuration to inject into the cluster. The JSON should have
35       the following structure:
36         {"FILEKEY":
37           {"config":
38             [{"section": "SECTIONNAME",
39               "values":
40                 [{"option": "OPTIONNAME",
41                   "value": "VALUENAME"
42                  }
43                 ]
44              }
45             ]
46           }
47         }
48       For instance:
49         {"nova":
50           {"config":
51             [{"section": "default",
52               "values":
53                 [{"option": "force_config_drive",
54                   "value": "always"
55                  }
56                 ]
57              },
58              {"section": "cells",
59               "values":
60                 [{"option": "driver",
61                   "value": "nova.cells.rpc_driver.CellsRPCDriver"
62                  }
63                 ]
64              }
65             ]
66           }
67         }
68     type: json
69   Flavor:
70     description: Flavor for block storage nodes to request when deploying.
71     type: string
72     constraints:
73       - custom_constraint: nova.flavor
74   GlancePort:
75     default: "9292"
76     description: Glance port.
77     type: string
78   KeyName:
79     default: default
80     description: Name of an existing EC2 KeyPair to enable SSH access to the instances
81     type: string
82   RabbitPassword:
83     default: 'guest'
84     type: string
85   RabbitUserName:
86     default: 'guest'
87     type: string
88   RabbitClientUseSSL:
89     default: false
90     description: >
91         Rabbit client subscriber parameter to specify
92         an SSL connection to the RabbitMQ host.
93     type: string
94   RabbitClientPort:
95     default: 5672
96     description: Set rabbit subscriber port, change this if using SSL
97     type: number
98   SnmpdReadonlyUserName:
99     default: ro_snmp_user
100     description: The user name for SNMPd with readonly rights running on all Overcloud nodes
101     type: string
102   SnmpdReadonlyUserPassword:
103     default: unset
104     description: The user password for SNMPd with readonly rights running on all Overcloud nodes
105     type: string
106     hidden: true
107   NtpServer:
108     type: string
109     default: ''
110   EnablePackageInstall:
111     default: 'false'
112     description: Set to true to enable package installation via Puppet
113     type: boolean
114   UpdateIdentifier:
115     default: ''
116     type: string
117     description: >
118       Setting to a previously unused value during stack-update will trigger
119       package update on all nodes
120   Hostname:
121     type: string
122     default: '' # Defaults to Heat created hostname
123
124 resources:
125   BlockStorage:
126     type: OS::Nova::Server
127     properties:
128       image:
129         {get_param: Image}
130       flavor: {get_param: Flavor}
131       key_name: {get_param: KeyName}
132       networks:
133         - network: ctlplane
134       user_data_format: SOFTWARE_CONFIG
135       user_data: {get_resource: NodeUserData}
136       name: {get_param: Hostname}
137
138   NodeUserData:
139     type: OS::TripleO::NodeUserData
140
141   InternalApiPort:
142     type: OS::TripleO::BlockStorage::Ports::InternalApiPort
143     properties:
144       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
145
146   StoragePort:
147     type: OS::TripleO::BlockStorage::Ports::StoragePort
148     properties:
149       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
150
151   StorageMgmtPort:
152     type: OS::TripleO::BlockStorage::Ports::StorageMgmtPort
153     properties:
154       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
155
156   NetworkConfig:
157     type: OS::TripleO::BlockStorage::Net::SoftwareConfig
158     properties:
159       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
160       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
161       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
162
163   NetworkDeployment:
164     type: OS::TripleO::SoftwareDeployment
165     properties:
166       config: {get_resource: NetworkConfig}
167       server: {get_resource: BlockStorage}
168
169   BlockStorageDeployment:
170     type: OS::Heat::StructuredDeployment
171     depends_on: NetworkDeployment
172     properties:
173       server: {get_resource: BlockStorage}
174       config: {get_resource: BlockStorageConfig}
175       input_values:
176         debug: {get_param: Debug}
177         cinder_dsn: {list_join: ['', ['mysql://cinder:', {get_param: CinderPassword}, '@', {get_param: VirtualIP} , '/cinder']]}
178         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
179         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
180         cinder_lvm_loop_device_size:
181           str_replace:
182             template: sizeM
183             params:
184               size: {get_param: CinderLVMLoopDeviceSize}
185         cinder_enable_iscsi_backend: {get_param: CinderEnableIscsiBackend}
186         cinder_iscsi_helper: {get_param: CinderISCSIHelper}
187         rabbit_username: {get_param: RabbitUserName}
188         rabbit_password: {get_param: RabbitPassword}
189         rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
190         rabbit_client_port: {get_param: RabbitClientPort}
191         ntp_servers:
192           str_replace:
193             template: '["server"]'
194             params:
195               server: {get_param: NtpServer}
196         enable_package_install: {get_param: EnablePackageInstall}
197
198   # Map heat metadata into hiera datafiles
199   BlockStorageConfig:
200     type: OS::Heat::StructuredConfig
201     properties:
202       group: os-apply-config
203       config:
204         hiera:
205           hierarchy:
206             - heat_config_%{::deploy_config_name}
207             - volume
208             - all_nodes # provided by allNodesConfig
209             - '"%{::osfamily}"'
210             - common
211           datafiles:
212             common:
213               raw_data: {get_file: hieradata/common.yaml}
214             volume:
215               raw_data: {get_file: hieradata/volume.yaml}
216               oac_data:
217                 cinder_iscsi_ip_address: local-ipv4
218               mapped_data:
219                 # Cinder
220                 cinder::debug: {get_input: debug}
221                 cinder::setup_test_volume::size: {get_input: cinder_lvm_loop_device_size}
222                 cinder_iscsi_helper: {get_input: cinder_iscsi_helper}
223                 cinder::database_connection: {get_input: cinder_dsn}
224                 cinder::rabbit_userid: {get_input: rabbit_username}
225                 cinder::rabbit_password: {get_input: rabbit_password}
226                 cinder::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
227                 cinder::rabbit_port: {get_input: rabbit_client_port}
228                 cinder_enable_iscsi_backend: {get_input: cinder_enable_iscsi_backend}
229                 ntp::servers: {get_input: ntp_servers}
230                 enable_package_install: {get_input: enable_package_install}
231                 snmpd_readonly_user_name: {get_input: snmpd_readonly_user_name}
232                 snmpd_readonly_user_password: {get_input: snmpd_readonly_user_password}
233
234   UpdateConfig:
235     type: OS::TripleO::Tasks::PackageUpdate
236
237   UpdateDeployment:
238     type: OS::Heat::SoftwareDeployment
239     properties:
240       config: {get_resource: UpdateConfig}
241       server: {get_resource: BlockStorage}
242       input_values:
243         update_identifier:
244           get_param: UpdateIdentifier
245
246 outputs:
247   hosts_entry:
248     value:
249       str_replace:
250         template: "IP HOST.localdomain HOST"
251         params:
252           IP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
253           HOST: {get_attr: [BlockStorage, name]}
254   nova_server_resource:
255     description: Heat resource handle for the block storage server
256     value:
257       {get_resource: BlockStorage}
258   internal_api_ip_address:
259     description: IP address of the server in the internal_api network
260     value: {get_attr: [InternalApiPort, ip_address]}
261   storage_ip_address:
262     description: IP address of the server in the storage network
263     value: {get_attr: [StoragePort, ip_address]}
264   storage_mgmt_ip_address:
265     description: IP address of the server in the storage_mgmt network
266     value: {get_attr: [StorageMgmtPort, ip_address]}