1 heat_template_version: 2014-10-16
2 description: 'Common Swift Storage Configuration'
10 Additional configuration to inject into the cluster. The JSON should have
11 the following structure:
14 [{"section": "SECTIONNAME",
16 [{"option": "OPTIONNAME",
27 [{"section": "default",
29 [{"option": "force_config_drive",
37 "value": "nova.cells.rpc_driver.CellsRPCDriver"
47 description: Flavor for Swift storage nodes to request when deploying.
51 description: A random string to be used as a salt when hashing to determine mappings
56 default: overcloud-swift-storage
60 description: Name of an existing EC2 KeyPair to enable SSH access to the instances
62 NeutronEnableTunnelling:
70 description: Partition Power to use when building Swift rings
74 description: The password for the swift service account, used by the swift proxy
81 description: How many replicas to use in the swift rings.
82 SnmpdReadonlyUserName:
84 description: The user name for SNMPd with readonly rights running on all Overcloud nodes
86 SnmpdReadonlyUserPassword:
88 description: The user password for SNMPd with readonly rights running on all Overcloud nodes
94 type: OS::Heat::StructuredConfig
96 group: os-apply-config
99 export_MIB: UCD-SNMP-MIB
100 readonly_user_name: {get_input: snmpd_readonly_user_name}
101 readonly_user_password: {get_input: snmpd_readonly_user_password}
103 hash: { get_input: swift_hash_suffix }
104 part-power: { get_input: swift_part_power }
105 replicas: {get_input: swift_replicas }
106 service-password: { get_input: swift_password }
108 enable_tunnelling: {get_param: NeutronEnableTunnelling}
109 tenant_network_type: {get_param: NeutronNetworkType}
111 local_ip: { get_input: neutron_local_ip }
113 type: OS::Nova::Server
115 image: {get_param: Image}
116 flavor: {get_param: Flavor}
117 key_name: {get_param: KeyName}
118 user_data_format: SOFTWARE_CONFIG
122 type: OS::Heat::StructuredConfig
126 host: {get_input: keystone_host}
127 SwiftStorageKeystone:
128 type: OS::Heat::StructuredDeployment
130 server: {get_resource: SwiftStorage}
131 config: {get_resource: SwiftKeystoneConfig}
132 signal_transport: NO_SIGNAL
134 keystone_host: {get_param: ControllerIP}
136 type: OS::Heat::StructuredDeployment
138 server: {get_resource: SwiftStorage}
139 config: {get_resource: SwiftConfig}
140 signal_transport: NO_SIGNAL
142 neutron_local_ip: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
143 snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
144 snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
145 swift_hash_suffix: {get_param: HashSuffix}
146 swift_password: {get_param: Password}
147 swift_part_power: {get_param: PartPower}
148 swift_replicas: { get_param: Replicas}
154 template: "IP HOST HOST.novalocal"
156 IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
157 HOST: {get_attr: [SwiftStorage, name]}
158 nova_server_resource:
159 description: Heat resource handle for the swift storage server
161 {get_resource: SwiftStorage}
163 description: Swift device formatted for swift-ring-builder
166 template: 'r1z1-IP:%PORT%/d1'
168 IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}