Merge "Add Management Network For System Administration."
[apex-tripleo-heat-templates.git] / puppet / ceph-storage.yaml
1 heat_template_version: 2015-04-30
2 description: 'OpenStack ceph storage node configured by Puppet'
3 parameters:
4   Flavor:
5     description: Flavor for the Ceph Storage node.
6     type: string
7     constraints:
8       - custom_constraint: nova.flavor
9   Image:
10     type: string
11     default: overcloud-ceph-storage
12     constraints:
13       - custom_constraint: glance.image
14   ImageUpdatePolicy:
15     default: 'REBUILD_PRESERVE_EPHEMERAL'
16     description: What policy to use when reconstructing instances. REBUILD for rebuilds, REBUILD_PRESERVE_EPHEMERAL to preserve /mnt.
17     type: string
18   KeyName:
19     description: Name of an existing Nova key pair to enable SSH access to the instances
20     type: string
21     default: default
22     constraints:
23       - custom_constraint: nova.keypair
24   NtpServer:
25     default: ''
26     description: Comma-separated list of ntp servers
27     type: comma_delimited_list
28   EnablePackageInstall:
29     default: 'false'
30     description: Set to true to enable package installation via Puppet
31     type: boolean
32   ServiceNetMap:
33     default: {}
34     description: Mapping of service_name -> network name. Typically set
35                  via parameter_defaults in the resource registry.
36     type: json
37   UpdateIdentifier:
38     default: ''
39     type: string
40     description: >
41       Setting to a previously unused value during stack-update will trigger
42       package update on all nodes
43   Hostname:
44     type: string
45     default: '' # Defaults to Heat created hostname
46   ExtraConfig:
47     default: {}
48     description: |
49       Additional hiera configuration to inject into the cluster. Note
50       that CephStorageExtraConfig takes precedence over ExtraConfig.
51     type: json
52   CephStorageExtraConfig:
53     default: {}
54     description: |
55       Role specific additional hiera configuration to inject into the cluster.
56     type: json
57   NetworkDeploymentActions:
58     type: comma_delimited_list
59     description: >
60       Heat action when to apply network configuration changes
61     default: ['CREATE']
62   SoftwareConfigTransport:
63     default: POLL_SERVER_CFN
64     description: |
65       How the server should receive the metadata required for software configuration.
66     type: string
67     constraints:
68     - allowed_values: [POLL_SERVER_CFN, POLL_SERVER_HEAT, POLL_TEMP_URL, ZAQAR_MESSAGE]
69   CloudDomain:
70     default: ''
71     type: string
72     description: >
73       The DNS domain used for the hosts. This should match the dhcp_domain
74       configured in the Undercloud neutron. Defaults to localdomain.
75   ServerMetadata:
76     default: {}
77     description: >
78       Extra properties or metadata passed to Nova for the created nodes in
79       the overcloud. It's accessible via the Nova metadata API.
80     type: json
81   SchedulerHints:
82     type: json
83     description: Optional scheduler hints to pass to nova
84     default: {}
85
86 resources:
87   CephStorage:
88     type: OS::Nova::Server
89     properties:
90       image: {get_param: Image}
91       image_update_policy: {get_param: ImageUpdatePolicy}
92       flavor: {get_param: Flavor}
93       key_name: {get_param: KeyName}
94       networks:
95         - network: ctlplane
96       user_data_format: SOFTWARE_CONFIG
97       user_data: {get_resource: UserData}
98       name: {get_param: Hostname}
99       software_config_transport: {get_param: SoftwareConfigTransport}
100       metadata: {get_param: ServerMetadata}
101       scheduler_hints: {get_param: SchedulerHints}
102
103   # Combine the NodeAdminUserData and NodeUserData mime archives
104   UserData:
105     type: OS::Heat::MultipartMime
106     properties:
107       parts:
108       - config: {get_resource: NodeAdminUserData}
109         type: multipart
110       - config: {get_resource: NodeUserData}
111         type: multipart
112
113   # Creates the "heat-admin" user if configured via the environment
114   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
115   NodeAdminUserData:
116     type: OS::TripleO::NodeAdminUserData
117
118   # For optional operator additional userdata
119   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
120   NodeUserData:
121     type: OS::TripleO::NodeUserData
122
123   StoragePort:
124     type: OS::TripleO::CephStorage::Ports::StoragePort
125     properties:
126       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
127
128   StorageMgmtPort:
129     type: OS::TripleO::CephStorage::Ports::StorageMgmtPort
130     properties:
131       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
132
133   ManagementPort:
134     type: OS::TripleO::CephStorage::Ports::ManagementPort
135     properties:
136       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
137
138   NetworkConfig:
139     type: OS::TripleO::CephStorage::Net::SoftwareConfig
140     properties:
141       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
142       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
143       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
144       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
145
146   NetIpMap:
147     type: OS::TripleO::Network::Ports::NetIpMap
148     properties:
149       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
150       StorageIp: {get_attr: [StoragePort, ip_address]}
151       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
152       ManagementIp: {get_attr: [ManagementPort, ip_address]}
153
154   NetIpSubnetMap:
155     type: OS::TripleO::Network::Ports::NetIpSubnetMap
156     properties:
157       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
158       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
159       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
160       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
161
162   NetworkDeployment:
163     type: OS::TripleO::SoftwareDeployment
164     properties:
165       config: {get_resource: NetworkConfig}
166       server: {get_resource: CephStorage}
167       actions: {get_param: NetworkDeploymentActions}
168
169   CephStorageDeployment:
170     type: OS::Heat::StructuredDeployment
171     depends_on: NetworkDeployment
172     properties:
173       config: {get_resource: CephStorageConfig}
174       server: {get_resource: CephStorage}
175       input_values:
176         ntp_servers: {get_param: NtpServer}
177         enable_package_install: {get_param: EnablePackageInstall}
178         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
179         ceph_cluster_network: {get_attr: [NetIpSubnetMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephClusterNetwork]}]}
180         ceph_public_network: {get_attr: [NetIpSubnetMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephPublicNetwork]}]}
181
182   CephStorageConfig:
183     type: OS::Heat::StructuredConfig
184     properties:
185       group: os-apply-config
186       config:
187         hiera:
188           hierarchy:
189             - '"%{::uuid}"'
190             - heat_config_%{::deploy_config_name}
191             - ceph_extraconfig
192             - extraconfig
193             - ceph_cluster # provided by CephClusterConfig
194             - ceph
195             - '"%{::osfamily}"'
196             - common
197           datafiles:
198             common:
199               raw_data: {get_file: hieradata/common.yaml}
200             ceph_extraconfig:
201               mapped_data: {get_param: CephStorageExtraConfig}
202             extraconfig:
203               mapped_data: {get_param: ExtraConfig}
204             ceph:
205               raw_data: {get_file: hieradata/ceph.yaml}
206               mapped_data:
207                 ntp::servers: {get_input: ntp_servers}
208                 tripleo::packages::enable_install: {get_input: enable_package_install}
209                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
210                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
211                 ceph::profile::params::public_network: {get_input: ceph_public_network}
212
213   # Resource for site-specific injection of root certificate
214   NodeTLSCAData:
215     depends_on: CephStorageDeployment
216     type: OS::TripleO::NodeTLSCAData
217     properties:
218       server: {get_resource: CephStorage}
219
220   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
221   CephStorageExtraConfigPre:
222     depends_on: CephStorageDeployment
223     type: OS::TripleO::CephStorageExtraConfigPre
224     properties:
225         server: {get_resource: CephStorage}
226
227   # Hook for site-specific additional pre-deployment config,
228   # applying to all nodes, e.g node registration/unregistration
229   NodeExtraConfig:
230     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
231     type: OS::TripleO::NodeExtraConfig
232     properties:
233         server: {get_resource: CephStorage}
234
235   UpdateConfig:
236     type: OS::TripleO::Tasks::PackageUpdate
237
238   UpdateDeployment:
239     type: OS::Heat::SoftwareDeployment
240     properties:
241       config: {get_resource: UpdateConfig}
242       server: {get_resource: CephStorage}
243       input_values:
244         update_identifier:
245           get_param: UpdateIdentifier
246
247 outputs:
248   hosts_entry:
249     value:
250       str_replace:
251         template: "IP HOST.DOMAIN HOST"
252         params:
253           IP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
254           DOMAIN: {get_param: CloudDomain}
255           HOST: {get_attr: [CephStorage, name]}
256   nova_server_resource:
257     description: Heat resource handle for the ceph storage server
258     value:
259       {get_resource: CephStorage}
260   storage_ip_address:
261     description: IP address of the server in the storage network
262     value: {get_attr: [StoragePort, ip_address]}
263   storage_mgmt_ip_address:
264     description: IP address of the server in the storage_mgmt network
265     value: {get_attr: [StorageMgmtPort, ip_address]}
266   management_ip_address:
267     description: IP address of the server in the management network
268     value: {get_attr: [ManagementPort, ip_address]}
269   config_identifier:
270     description: identifier which changes if the node configuration may need re-applying
271     value:
272       list_join:
273       - ','
274       - - {get_attr: [CephStorageDeployment, deploy_stdout]}
275         - {get_attr: [NodeTLSCAData, deploy_stdout]}
276         - {get_attr: [CephStorageExtraConfigPre, deploy_stdout]}
277         - {get_param: UpdateIdentifier}