Merge "horizon/keystone api should use internal_api NW"
[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
115 resources:
116   BlockStorage:
117     type: OS::Nova::Server
118     properties:
119       image:
120         {get_param: Image}
121       flavor: {get_param: Flavor}
122       key_name: {get_param: KeyName}
123       networks:
124         - network: ctlplane
125       user_data_format: SOFTWARE_CONFIG
126       user_data: {get_resource: NodeUserData}
127
128   NodeUserData:
129     type: OS::TripleO::NodeUserData
130
131   InternalApiPort:
132     type: OS::TripleO::BlockStorage::Ports::InternalApiPort
133     properties:
134       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
135
136   StoragePort:
137     type: OS::TripleO::BlockStorage::Ports::StoragePort
138     properties:
139       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
140
141   StorageMgmtPort:
142     type: OS::TripleO::BlockStorage::Ports::StorageMgmtPort
143     properties:
144       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
145
146   NetworkConfig:
147     type: OS::TripleO::BlockStorage::Net::SoftwareConfig
148     properties:
149       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
150       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
151       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
152
153   NetworkDeployment:
154     type: OS::TripleO::SoftwareDeployment
155     properties:
156       config: {get_resource: NetworkConfig}
157       server: {get_resource: BlockStorage}
158
159   BlockStorageDeployment:
160     type: OS::Heat::StructuredDeployment
161     properties:
162       server: {get_resource: BlockStorage}
163       config: {get_resource: BlockStorageConfig}
164       input_values:
165         debug: {get_param: Debug}
166         cinder_dsn: {list_join: ['', ['mysql://cinder:', {get_param: CinderPassword}, '@', {get_param: VirtualIP} , '/cinder']]}
167         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
168         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
169         cinder_lvm_loop_device_size:
170           str_replace:
171             template: sizeM
172             params:
173               size: {get_param: CinderLVMLoopDeviceSize}
174         cinder_enable_iscsi_backend: {get_param: CinderEnableIscsiBackend}
175         cinder_iscsi_helper: {get_param: CinderISCSIHelper}
176         rabbit_username: {get_param: RabbitUserName}
177         rabbit_password: {get_param: RabbitPassword}
178         rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
179         rabbit_client_port: {get_param: RabbitClientPort}
180         ntp_servers:
181           str_replace:
182             template: '["server"]'
183             params:
184               server: {get_param: NtpServer}
185         enable_package_install: {get_param: EnablePackageInstall}
186       signal_transport: NO_SIGNAL
187
188   # Map heat metadata into hiera datafiles
189   BlockStorageConfig:
190     type: OS::Heat::StructuredConfig
191     properties:
192       group: os-apply-config
193       config:
194         hiera:
195           hierarchy:
196             - heat_config_%{::deploy_config_name}
197             - volume
198             - all_nodes # provided by allNodesConfig
199             - '"%{::osfamily}"'
200             - common
201           datafiles:
202             common:
203               raw_data: {get_file: hieradata/common.yaml}
204             volume:
205               raw_data: {get_file: hieradata/volume.yaml}
206               oac_data:
207                 cinder_iscsi_ip_address: local-ipv4
208               mapped_data:
209                 # Cinder
210                 cinder::debug: {get_input: debug}
211                 cinder::setup_test_volume::size: {get_input: cinder_lvm_loop_device_size}
212                 cinder_iscsi_helper: {get_input: cinder_iscsi_helper}
213                 cinder::database_connection: {get_input: cinder_dsn}
214                 cinder::rabbit_userid: {get_input: rabbit_username}
215                 cinder::rabbit_password: {get_input: rabbit_password}
216                 cinder::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
217                 cinder::rabbit_port: {get_input: rabbit_client_port}
218                 cinder_enable_iscsi_backend: {get_input: cinder_enable_iscsi_backend}
219                 ntp::servers: {get_input: ntp_servers}
220                 enable_package_install: {get_input: enable_package_install}
221                 snmpd_readonly_user_name: {get_input: snmpd_readonly_user_name}
222                 snmpd_readonly_user_password: {get_input: snmpd_readonly_user_password}
223
224 outputs:
225   hosts_entry:
226     value:
227       str_replace:
228         template: "IP HOST"
229         params:
230           IP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
231           HOST: {get_attr: [BlockStorage, name]}
232   nova_server_resource:
233     description: Heat resource handle for the block storage server
234     value:
235       {get_resource: BlockStorage}
236   internal_api_ip_address:
237     description: IP address of the server in the internal_api network
238     value: {get_attr: [InternalApiPort, ip_address]}
239   storage_ip_address:
240     description: IP address of the server in the storage network
241     value: {get_attr: [StoragePort, ip_address]}
242   storage_mgmt_ip_address:
243     description: IP address of the server in the storage_mgmt network
244     value: {get_attr: [StorageMgmtPort, ip_address]}