Merge "Enable NetApp Backends in Cinder"
[apex-tripleo-heat-templates.git] / cinder-storage.yaml
1 heat_template_version: 2015-04-30
2 description: 'Common Block Storage Configuration'
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   VirtualIP:
25     default: ''
26     type: string
27   ExtraConfig:
28     default: {}
29     description: |
30       Additional configuration to inject into the cluster. The JSON should have
31       the following structure:
32         {"FILEKEY":
33           {"config":
34             [{"section": "SECTIONNAME",
35               "values":
36                 [{"option": "OPTIONNAME",
37                   "value": "VALUENAME"
38                  }
39                 ]
40              }
41             ]
42           }
43         }
44       For instance:
45         {"nova":
46           {"config":
47             [{"section": "default",
48               "values":
49                 [{"option": "force_config_drive",
50                   "value": "always"
51                  }
52                 ]
53              },
54              {"section": "cells",
55               "values":
56                 [{"option": "driver",
57                   "value": "nova.cells.rpc_driver.CellsRPCDriver"
58                  }
59                 ]
60              }
61             ]
62           }
63         }
64     type: json
65   Flavor:
66     description: Flavor for block storage nodes to request when deploying.
67     type: string
68     constraints:
69       - custom_constraint: nova.flavor
70   GlancePort:
71     default: "9292"
72     description: Glance port.
73     type: string
74   KeyName:
75     default: default
76     description: Name of an existing EC2 KeyPair to enable SSH access to the instances
77     type: string
78   RabbitPassword:
79     default: 'guest'
80     type: string
81   RabbitUserName:
82     default: 'guest'
83     type: string
84   RabbitClientUseSSL:
85     default: false
86     description: >
87         Rabbit client subscriber parameter to specify
88         an SSL connection to the RabbitMQ host.
89     type: string
90   RabbitClientPort:
91     default: 5672
92     description: Set rabbit subscriber port, change this if using SSL
93     type: number
94   SnmpdReadonlyUserName:
95     default: ro_snmp_user
96     description: The user name for SNMPd with readonly rights running on all Overcloud nodes
97     type: string
98   SnmpdReadonlyUserPassword:
99     default: unset
100     description: The user password for SNMPd with readonly rights running on all Overcloud nodes
101     type: string
102     hidden: true
103   UpdateIdentifier:
104     default: ''
105     type: string
106     description: >
107       Setting to a previously unused value during stack-update will trigger
108       package update on all nodes
109
110 resources:
111   BlockStorage:
112     type: OS::Nova::Server
113     properties:
114       image:
115         {get_param: Image}
116       flavor: {get_param: Flavor}
117       key_name: {get_param: KeyName}
118       networks:
119         - network: ctlplane
120       user_data_format: SOFTWARE_CONFIG
121       user_data: {get_resource: NodeUserData}
122
123   NodeUserData:
124     type: OS::TripleO::NodeUserData
125
126   InternalApiPort:
127     type: OS::TripleO::BlockStorage::Ports::InternalApiPort
128     properties:
129       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
130
131   StoragePort:
132     type: OS::TripleO::BlockStorage::Ports::StoragePort
133     properties:
134       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
135
136   StorageMgmtPort:
137     type: OS::TripleO::BlockStorage::Ports::StorageMgmtPort
138     properties:
139       ControlPlaneIP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
140
141   NetworkConfig:
142     type: OS::TripleO::BlockStorage::Net::SoftwareConfig
143     properties:
144       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
145       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
146       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
147
148   NetworkDeployment:
149     type: OS::TripleO::SoftwareDeployment
150     properties:
151       config: {get_resource: NetworkConfig}
152       server: {get_resource: BlockStorage}
153
154   BlockStorageDeployment:
155     type: OS::Heat::StructuredDeployment
156     properties:
157       server: {get_resource: BlockStorage}
158       config: {get_resource: BlockStorageConfig}
159       input_values:
160         controller_virtual_ip: {get_param: VirtualIP}
161         cinder_dsn: {list_join: ['', ['mysql://cinder:', {get_param: CinderPassword}, '@', {get_param: VirtualIP} , '/cinder']]}
162         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
163         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
164       signal_transport: NO_SIGNAL
165   BlockStorageConfig:
166     type: OS::Heat::StructuredConfig
167     properties:
168       group: os-apply-config
169       config:
170         keystone:
171           host: {get_input: controller_virtual_ip}
172         cinder:
173           db: {get_input: cinder_dsn}
174           volume_size_mb:
175             get_param: CinderLVMLoopDeviceSize
176           iscsi-helper:
177             get_param: CinderISCSIHelper
178         snmpd:
179           export_MIB: UCD-SNMP-MIB
180           readonly_user_name: {get_input: snmpd_readonly_user_name}
181           readonly_user_password: {get_input: snmpd_readonly_user_password}
182         rabbit:
183           host: {get_input: controller_virtual_ip}
184           username: {get_param: RabbitUserName}
185           password: {get_param: RabbitPassword}
186         glance:
187           host: {get_input: controller_virtual_ip}
188           port: {get_param: GlancePort}
189 outputs:
190   hosts_entry:
191     value:
192       str_replace:
193         template: "IP HOST"
194         params:
195           IP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
196           HOST: {get_attr: [BlockStorage, name]}
197   internal_api_ip_address:
198     description: IP address of the server in the internal_api network
199     value: {get_attr: [InternalApiPort, ip_address]}
200   storage_ip_address:
201     description: IP address of the server in the storage network
202     value: {get_attr: [StoragePort, ip_address]}
203   storage_mgmt_ip_address:
204     description: IP address of the server in the storage_mgmt network
205     value: {get_attr: [StorageMgmtPort, ip_address]}