13621ebfbe
This allows the use of OVB on newer clouds (at least Newton and up) without changing the host cloud firewall_driver in Neutron. Sample resource registry entries are added to the example env file.
36 lines
587 B
YAML
36 lines
587 B
YAML
heat_template_version: 2015-10-15
|
|
|
|
parameters:
|
|
|
|
baremetal_prefix:
|
|
type: string
|
|
|
|
provision_net:
|
|
type: string
|
|
|
|
public_net:
|
|
type: string
|
|
description: Name of external network
|
|
default: public
|
|
|
|
suffix:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
provision_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: provision_net}
|
|
port_security_enabled: False
|
|
|
|
outputs:
|
|
ports:
|
|
value:
|
|
- {port: {get_resource: provision_port}}
|