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