Merge "Minor fixes to TLS related resources"
[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 EC2 KeyPair 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   CloudDomain:
63     default: ''
64     type: string
65     description: >
66       The DNS domain used for the hosts. This should match the dhcp_domain
67       configured in the Undercloud neutron. Defaults to localdomain.
68
69
70 resources:
71   CephStorage:
72     type: OS::Nova::Server
73     properties:
74       image: {get_param: Image}
75       image_update_policy: {get_param: ImageUpdatePolicy}
76       flavor: {get_param: Flavor}
77       key_name: {get_param: KeyName}
78       networks:
79         - network: ctlplane
80       user_data_format: SOFTWARE_CONFIG
81       user_data: {get_resource: UserData}
82       name: {get_param: Hostname}
83
84   # Combine the NodeAdminUserData and NodeUserData mime archives
85   UserData:
86     type: OS::Heat::MultipartMime
87     properties:
88       parts:
89       - config: {get_resource: NodeAdminUserData}
90         type: multipart
91       - config: {get_resource: NodeUserData}
92         type: multipart
93
94   # Creates the "heat-admin" user if configured via the environment
95   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
96   NodeAdminUserData:
97     type: OS::TripleO::NodeAdminUserData
98
99   # For optional operator additional userdata
100   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
101   NodeUserData:
102     type: OS::TripleO::NodeUserData
103
104   StoragePort:
105     type: OS::TripleO::CephStorage::Ports::StoragePort
106     properties:
107       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
108
109   StorageMgmtPort:
110     type: OS::TripleO::CephStorage::Ports::StorageMgmtPort
111     properties:
112       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
113
114   NetworkConfig:
115     type: OS::TripleO::CephStorage::Net::SoftwareConfig
116     properties:
117       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
118       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
119       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
120
121   NetIpMap:
122     type: OS::TripleO::Network::Ports::NetIpMap
123     properties:
124       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
125       StorageIp: {get_attr: [StoragePort, ip_address]}
126       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
127
128   NetIpSubnetMap:
129     type: OS::TripleO::Network::Ports::NetIpSubnetMap
130     properties:
131       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
132       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
133       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
134
135   NetworkDeployment:
136     type: OS::TripleO::SoftwareDeployment
137     properties:
138       config: {get_resource: NetworkConfig}
139       server: {get_resource: CephStorage}
140       actions: {get_param: NetworkDeploymentActions}
141
142   CephStorageDeployment:
143     type: OS::Heat::StructuredDeployment
144     depends_on: NetworkDeployment
145     properties:
146       config: {get_resource: CephStorageConfig}
147       server: {get_resource: CephStorage}
148       input_values:
149         ntp_servers: {get_param: NtpServer}
150         enable_package_install: {get_param: EnablePackageInstall}
151         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
152         ceph_cluster_network: {get_attr: [NetIpSubnetMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephClusterNetwork]}]}
153         ceph_public_network: {get_attr: [NetIpSubnetMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephPublicNetwork]}]}
154
155   CephStorageConfig:
156     type: OS::Heat::StructuredConfig
157     properties:
158       group: os-apply-config
159       config:
160         hiera:
161           hierarchy:
162             - '"%{::uuid}"'
163             - heat_config_%{::deploy_config_name}
164             - ceph_extraconfig
165             - extraconfig
166             - ceph_cluster # provided by CephClusterConfig
167             - ceph
168             - '"%{::osfamily}"'
169             - common
170           datafiles:
171             common:
172               raw_data: {get_file: hieradata/common.yaml}
173             ceph_extraconfig:
174               mapped_data: {get_param: CephStorageExtraConfig}
175             extraconfig:
176               mapped_data: {get_param: ExtraConfig}
177             ceph:
178               raw_data: {get_file: hieradata/ceph.yaml}
179               mapped_data:
180                 ntp::servers: {get_input: ntp_servers}
181                 tripleo::packages::enable_install: {get_input: enable_package_install}
182                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
183                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
184                 ceph::profile::params::public_network: {get_input: ceph_public_network}
185
186   # Resource for site-specific injection of root certificate
187   NodeTLSCAData:
188     depends_on: CephStorageDeployment
189     type: OS::TripleO::NodeTLSCAData
190     properties:
191       server: {get_resource: CephStorage}
192
193   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
194   CephStorageExtraConfigPre:
195     depends_on: CephStorageDeployment
196     type: OS::TripleO::CephStorageExtraConfigPre
197     properties:
198         server: {get_resource: CephStorage}
199
200   # Hook for site-specific additional pre-deployment config,
201   # applying to all nodes, e.g node registration/unregistration
202   NodeExtraConfig:
203     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
204     type: OS::TripleO::NodeExtraConfig
205     properties:
206         server: {get_resource: CephStorage}
207
208   UpdateConfig:
209     type: OS::TripleO::Tasks::PackageUpdate
210
211   UpdateDeployment:
212     type: OS::Heat::SoftwareDeployment
213     properties:
214       config: {get_resource: UpdateConfig}
215       server: {get_resource: CephStorage}
216       input_values:
217         update_identifier:
218           get_param: UpdateIdentifier
219
220 outputs:
221   hosts_entry:
222     value:
223       str_replace:
224         template: "IP HOST.DOMAIN HOST"
225         params:
226           IP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
227           DOMAIN: {get_param: CloudDomain}
228           HOST: {get_attr: [CephStorage, name]}
229   nova_server_resource:
230     description: Heat resource handle for the ceph storage server
231     value:
232       {get_resource: CephStorage}
233   storage_ip_address:
234     description: IP address of the server in the storage network
235     value: {get_attr: [StoragePort, ip_address]}
236   storage_mgmt_ip_address:
237     description: IP address of the server in the storage_mgmt network
238     value: {get_attr: [StorageMgmtPort, ip_address]}
239   config_identifier:
240     description: identifier which changes if the node configuration may need re-applying
241     value:
242       list_join:
243       - ','
244       - - {get_attr: [CephStorageDeployment, deploy_stdout]}
245         - {get_attr: [NodeTLSCAData, deploy_stdout]}
246         - {get_attr: [CephStorageExtraConfigPre, deploy_stdout]}
247         - {get_param: UpdateIdentifier}