6f861d889c9247dcfaa1c6c1717505fb1917d81a
[apex-tripleo-heat-templates.git] / puppet / swift-storage-puppet.yaml
1 heat_template_version: 2014-10-16
2 description: 'OpenStack swift storage node configured by Puppet'
3 parameters:
4   Flavor:
5     description: Flavor for Swift storage nodes to request when deploying.
6     type: string
7     constraints:
8       - custom_constraint: nova.flavor
9   HashSuffix:
10     default: unset
11     description: A random string to be used as a salt when hashing to determine mappings
12       in the ring.
13     hidden: true
14     type: string
15   Image:
16     default: overcloud-swift-storage
17     type: string
18   KeyName:
19     default: default
20     description: Name of an existing EC2 KeyPair to enable SSH access to the instances
21     type: string
22   MountCheck:
23     default: 'false'
24     description: Value of mount_check in Swift account/container/object -server.conf
25     type: boolean
26   MinPartHours:
27     type: number
28     default: 1
29     description: The minimum time (in hours) before a partition in a ring can be moved following a rebalance.
30   PartPower:
31     default: 10
32     description: Partition Power to use when building Swift rings
33     type: number
34   Replicas:
35     type: number
36     default: 3
37     description: How many replicas to use in the swift rings.
38   SnmpdReadonlyUserName:
39     default: ro_snmp_user
40     description: The user name for SNMPd with readonly rights running on all Overcloud nodes
41     type: string
42   SnmpdReadonlyUserPassword:
43     default: unset
44     description: The user password for SNMPd with readonly rights running on all Overcloud nodes
45     type: string
46     hidden: true
47   NtpServer:
48     type: string
49     default: ''
50   EnablePackageInstall:
51     default: 'false'
52     description: Set to true to enable package installation via Puppet
53     type: boolean
54
55 resources:
56
57   SwiftStorage:
58     type: OS::Nova::Server
59     properties:
60       image: {get_param: Image}
61       flavor: {get_param: Flavor}
62       key_name: {get_param: KeyName}
63       networks:
64         - network: ctlplane
65       user_data_format: SOFTWARE_CONFIG
66       user_data: {get_resource: NodeUserData}
67
68   NodeUserData:
69     type: OS::TripleO::NodeUserData
70
71   SwiftStorageHieraConfig:
72     type: OS::Heat::StructuredConfig
73     properties:
74       group: os-apply-config
75       config:
76         hiera:
77           hierarchy:
78             - heat_config_%{::deploy_config_name}
79             - object
80             - '"%{::osfamily}"'
81             - common
82           datafiles:
83             common:
84               raw_data: {get_file: hieradata/common.yaml}
85             object:
86               raw_data: {get_file: hieradata/object.yaml}
87               oac_data: # data we map in from other OAC configurations
88                 tripleo::ringbuilder::devices: swift.devices
89               mapped_data: # data supplied directly to this deployment configuration, etc
90                 swift::swift_hash_suffix: { get_input: swift_hash_suffix }
91                 tripleo::ringbuilder::part_power: { get_input: swift_part_power }
92                 tripleo::ringbuilder::replicas: {get_input: swift_replicas }
93                 # Swift
94                 swift::storage::all::storage_local_net_ip: {get_input: local_ip}
95                 swift_mount_check: {get_input: swift_mount_check }
96                 tripleo::ringbuilder::min_part_hours: { get_input: swift_min_part_hours }
97                 ntp::servers: {get_input: ntp_servers}
98                 # NOTE(dprince): build_ring support is currently not wired in.
99                 # See: https://review.openstack.org/#/c/109225/
100                 tripleo::ringbuilder::build_ring: True
101                 enable_package_install: {get_input: enable_package_install}
102
103
104   SwiftStorageHieraDeploy:
105     type: OS::Heat::StructuredDeployment
106     properties:
107       server: {get_resource: SwiftStorage}
108       config: {get_resource: SwiftStorageHieraConfig}
109       signal_transport: NO_SIGNAL
110       input_values:
111         local_ip: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
112         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
113         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
114         swift_hash_suffix: {get_param: HashSuffix}
115         swift_mount_check: {get_param: MountCheck}
116         swift_min_part_hours: {get_param: MinPartHours}
117         swift_part_power: {get_param: PartPower}
118         swift_replicas: { get_param: Replicas}
119         ntp_servers:
120           str_replace:
121             template: '["server"]'
122             params:
123               server: {get_param: NtpServer}
124         enable_package_install: {get_param: EnablePackageInstall}
125
126 outputs:
127   hosts_entry:
128     value:
129       str_replace:
130         template: "IP HOST HOST.novalocal"
131         params:
132           IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
133           HOST: {get_attr: [SwiftStorage, name]}
134   nova_server_resource:
135     description: Heat resource handle for the swift storage server
136     value:
137       {get_resource: SwiftStorage}
138   swift_device:
139     description: Swift device formatted for swift-ring-builder
140     value:
141       str_replace:
142         template: 'r1z1-IP:%PORT%/d1'
143         params:
144           IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}