7522083f4097c553a1ac57d9ff20524d6f573acf
[apex-tripleo-heat-templates.git] / swift-storage.yaml
1 heat_template_version: 2014-10-16
2 description: 'Common Swift Storage Configuration'
3 parameters:
4   ControllerIP:
5     default: ''
6     type: string
7   ExtraConfig:
8     default: {}
9     description: |
10       Additional configuration to inject into the cluster. The JSON should have
11       the following structure:
12         {"FILEKEY":
13           {"config":
14             [{"section": "SECTIONNAME",
15               "values":
16                 [{"option": "OPTIONNAME",
17                   "value": "VALUENAME"
18                  }
19                 ]
20              }
21             ]
22           }
23         }
24       For instance:
25         {"nova":
26           {"config":
27             [{"section": "default",
28               "values":
29                 [{"option": "force_config_drive",
30                   "value": "always"
31                  }
32                 ]
33              },
34              {"section": "cells",
35               "values":
36                 [{"option": "driver",
37                   "value": "nova.cells.rpc_driver.CellsRPCDriver"
38                  }
39                 ]
40              }
41             ]
42           }
43         }
44     type: json
45   Flavor:
46     description: Flavor for Swift storage nodes to request when deploying.
47     type: string
48     constraints:
49       - custom_constraint: nova.flavor
50   HashSuffix:
51     default: unset
52     description: A random string to be used as a salt when hashing to determine mappings
53       in the ring.
54     hidden: true
55     type: string
56   Image:
57     default: overcloud-swift-storage
58     type: string
59   KeyName:
60     default: default
61     description: Name of an existing EC2 KeyPair to enable SSH access to the instances
62     type: string
63   MountCheck:
64     default: 'false'
65     description: Value of mount_check in Swift account/container/object -server.conf
66     type: boolean
67   NeutronEnableTunnelling:
68     default: "True"
69     type: string
70   NeutronNetworkType:
71     default: gre
72     type: string
73   MinPartHours:
74     type: number
75     default: 1
76     description: The minimum time (in hours) before a partition in a ring can be moved following a rebalance.
77   PartPower:
78     default: 10
79     description: Partition Power to use when building Swift rings
80     type: number
81   Password:
82     default: unset
83     description: The password for the swift service account, used by the swift proxy
84       services.
85     hidden: true
86     type: string
87   Replicas:
88     type: number
89     default: 1
90     description: How many replicas to use in the swift rings.
91   SnmpdReadonlyUserName:
92     default: ro_snmp_user
93     description: The user name for SNMPd with readonly rights running on all Overcloud nodes
94     type: string
95   SnmpdReadonlyUserPassword:
96     default: unset
97     description: The user password for SNMPd with readonly rights running on all Overcloud nodes
98     type: string
99     hidden: true
100
101 resources:
102   SwiftConfig:
103     type: OS::Heat::StructuredConfig
104     properties:
105       group: os-apply-config
106       config:
107         snmpd:
108           export_MIB: UCD-SNMP-MIB
109           readonly_user_name: {get_input: snmpd_readonly_user_name}
110           readonly_user_password: {get_input: snmpd_readonly_user_password}
111         swift:
112           hash: { get_input: swift_hash_suffix }
113           part-power: { get_input: swift_part_power }
114           min-part-hours: { get_input: swift_min_part_hours }
115           replicas: {get_input: swift_replicas }
116           service-password: { get_input: swift_password }
117         neutron:
118           enable_tunnelling: {get_param: NeutronEnableTunnelling}
119           tenant_network_type: {get_param: NeutronNetworkType}
120           ovs:
121             local_ip: { get_input: neutron_local_ip }
122   SwiftStorage:
123     type: OS::Nova::Server
124     properties:
125       image: {get_param: Image}
126       flavor: {get_param: Flavor}
127       key_name: {get_param: KeyName}
128       user_data_format: SOFTWARE_CONFIG
129       networks:
130         - network: ctlplane
131   SwiftKeystoneConfig:
132     type: OS::Heat::StructuredConfig
133     properties:
134       config:
135         keystone:
136           host: {get_input: keystone_host}
137   SwiftStorageKeystone:
138     type: OS::Heat::StructuredDeployment
139     properties:
140       server: {get_resource: SwiftStorage}
141       config: {get_resource: SwiftKeystoneConfig}
142       signal_transport: NO_SIGNAL
143       input_values:
144         keystone_host: {get_param: ControllerIP}
145   SwiftStorageDeploy:
146     type: OS::Heat::StructuredDeployment
147     properties:
148       server: {get_resource: SwiftStorage}
149       config: {get_resource: SwiftConfig}
150       signal_transport: NO_SIGNAL
151       input_values:
152         neutron_local_ip: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
153         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
154         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
155         swift_hash_suffix: {get_param: HashSuffix}
156         swift_mount_check: {get_param: MountCheck}
157         swift_password: {get_param: Password}
158         swift_min_part_hours: {get_param: MinPartHours}
159         swift_part_power: {get_param: PartPower}
160         swift_replicas: { get_param: Replicas}
161
162 outputs:
163   hosts_entry:
164     value:
165       str_replace:
166         template: "IP HOST HOST.novalocal"
167         params:
168           IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
169           HOST: {get_attr: [SwiftStorage, name]}
170   nova_server_resource:
171     description: Heat resource handle for the swift storage server
172     value:
173       {get_resource: SwiftStorage}
174   swift_device:
175     description: Swift device formatted for swift-ring-builder
176     value:
177       str_replace:
178         template: 'r1z1-IP:%PORT%/d1'
179         params:
180           IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}