Reuse the various service passwords as db passwords.
[apex-tripleo-heat-templates.git] / cinder-storage.yaml
1 heat_template_version: 2014-10-16
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 resources:
104   BlockStorage:
105     type: OS::Nova::Server
106     properties:
107       image:
108         {get_param: Image}
109       flavor: {get_param: Flavor}
110       key_name: {get_param: KeyName}
111       networks:
112         - network: ctlplane
113       user_data_format: SOFTWARE_CONFIG
114       user_data: {get_resource: NodeUserData}
115
116   NodeUserData:
117     type: OS::TripleO::NodeUserData
118
119   NetworkConfig:
120     type: OS::TripleO::BlockStorage::Net::SoftwareConfig
121
122   NetworkDeployment:
123     type: OS::TripleO::SoftwareDeployment
124     properties:
125       config: {get_attr: [NetworkConfig, config_id]}
126       server: {get_resource: BlockStorage}
127
128   BlockStorageDeployment:
129     type: OS::Heat::StructuredDeployment
130     properties:
131       server: {get_resource: BlockStorage}
132       config: {get_resource: BlockStorageConfig}
133       input_values:
134         controller_virtual_ip: {get_param: VirtualIP}
135         cinder_dsn: {list_join: ['', ['mysql://cinder:', {get_param: CinderPassword}, '@', {get_param: VirtualIP} , '/cinder']]}
136         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
137         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
138       signal_transport: NO_SIGNAL
139   BlockStorageConfig:
140     type: OS::Heat::StructuredConfig
141     properties:
142       group: os-apply-config
143       config:
144         keystone:
145           host: {get_input: controller_virtual_ip}
146         cinder:
147           db: {get_input: cinder_dsn}
148           volume_size_mb:
149             get_param: CinderLVMLoopDeviceSize
150           iscsi-helper:
151             get_param: CinderISCSIHelper
152         snmpd:
153           export_MIB: UCD-SNMP-MIB
154           readonly_user_name: {get_input: snmpd_readonly_user_name}
155           readonly_user_password: {get_input: snmpd_readonly_user_password}
156         rabbit:
157           host: {get_input: controller_virtual_ip}
158           username: {get_param: RabbitUserName}
159           password: {get_param: RabbitPassword}
160         glance:
161           host: {get_input: controller_virtual_ip}
162           port: {get_param: GlancePort}
163 outputs:
164   hosts_entry:
165     value:
166       str_replace:
167         template: "IP HOST HOST.novalocal"
168         params:
169           IP: {get_attr: [BlockStorage, networks, ctlplane, 0]}
170           HOST: {get_attr: [BlockStorage, name]}