Add isolated network ports to controller roles
[apex-tripleo-heat-templates.git] / puppet / swift-storage-puppet.yaml
1 heat_template_version: 2015-04-30
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   NetworkConfig:
72     type: OS::TripleO::ObjectStorage::Net::SoftwareConfig
73
74   NetworkDeployment:
75     type: OS::TripleO::SoftwareDeployment
76     properties:
77       config: {get_attr: [NetworkConfig, config_id]}
78       server: {get_resource: SwiftStorage}
79
80   SwiftStorageHieraConfig:
81     type: OS::Heat::StructuredConfig
82     properties:
83       group: os-apply-config
84       config:
85         hiera:
86           hierarchy:
87             - heat_config_%{::deploy_config_name}
88             - object
89             - '"%{::osfamily}"'
90             - common
91           datafiles:
92             common:
93               raw_data: {get_file: hieradata/common.yaml}
94             object:
95               raw_data: {get_file: hieradata/object.yaml}
96               oac_data: # data we map in from other OAC configurations
97                 tripleo::ringbuilder::devices: swift.devices
98               mapped_data: # data supplied directly to this deployment configuration, etc
99                 swift::swift_hash_suffix: { get_input: swift_hash_suffix }
100                 tripleo::ringbuilder::part_power: { get_input: swift_part_power }
101                 tripleo::ringbuilder::replicas: {get_input: swift_replicas }
102                 # Swift
103                 swift::storage::all::storage_local_net_ip: {get_input: local_ip}
104                 swift_mount_check: {get_input: swift_mount_check }
105                 tripleo::ringbuilder::min_part_hours: { get_input: swift_min_part_hours }
106                 ntp::servers: {get_input: ntp_servers}
107                 # NOTE(dprince): build_ring support is currently not wired in.
108                 # See: https://review.openstack.org/#/c/109225/
109                 tripleo::ringbuilder::build_ring: True
110                 enable_package_install: {get_input: enable_package_install}
111
112
113   SwiftStorageHieraDeploy:
114     type: OS::Heat::StructuredDeployment
115     properties:
116       server: {get_resource: SwiftStorage}
117       config: {get_resource: SwiftStorageHieraConfig}
118       signal_transport: NO_SIGNAL
119       input_values:
120         local_ip: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
121         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
122         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
123         swift_hash_suffix: {get_param: HashSuffix}
124         swift_mount_check: {get_param: MountCheck}
125         swift_min_part_hours: {get_param: MinPartHours}
126         swift_part_power: {get_param: PartPower}
127         swift_replicas: { get_param: Replicas}
128         ntp_servers:
129           str_replace:
130             template: '["server"]'
131             params:
132               server: {get_param: NtpServer}
133         enable_package_install: {get_param: EnablePackageInstall}
134
135 outputs:
136   hosts_entry:
137     value:
138       str_replace:
139         template: "IP HOST"
140         params:
141           IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
142           HOST: {get_attr: [SwiftStorage, name]}
143   nova_server_resource:
144     description: Heat resource handle for the swift storage server
145     value:
146       {get_resource: SwiftStorage}
147   swift_device:
148     description: Swift device formatted for swift-ring-builder
149     value:
150       str_replace:
151         template: 'r1z1-IP:%PORT%/d1'
152         params:
153           IP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}