247c2d02d2
OVB 2.0 won't support clouds that lack the port-security extension, so these are no longer needed.
129 lines
2.9 KiB
YAML
129 lines
2.9 KiB
YAML
heat_template_version: 2015-10-15
|
|
|
|
parameters:
|
|
|
|
baremetal_prefix:
|
|
type: string
|
|
|
|
networks:
|
|
type: json
|
|
|
|
suffix:
|
|
type: string
|
|
|
|
overcloud_internal_net:
|
|
type: string
|
|
description: Name of internal API network
|
|
default: overcloud_internal
|
|
|
|
overcloud_storage_net:
|
|
type: string
|
|
description: Name of storage network
|
|
default: overcloud_storage
|
|
|
|
overcloud_storage_mgmt_net:
|
|
type: string
|
|
description: Name of storage management network
|
|
default: overcloud_storage_mgmt
|
|
|
|
overcloud_tenant_net:
|
|
type: string
|
|
description: Name of tenant network
|
|
default: overcloud_tenant
|
|
|
|
resources:
|
|
|
|
provision_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: [networks, provision]}
|
|
port_security_enabled: False
|
|
|
|
internal_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - internal_
|
|
- {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: overcloud_internal_net}
|
|
port_security_enabled: False
|
|
|
|
storage_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - storage_
|
|
- {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: overcloud_storage_net}
|
|
port_security_enabled: False
|
|
|
|
storage_mgmt_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - storage_mgmt_
|
|
- {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: overcloud_storage_mgmt_net}
|
|
port_security_enabled: False
|
|
|
|
tenant_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - tenant_
|
|
- {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: overcloud_tenant_net}
|
|
port_security_enabled: False
|
|
|
|
public_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - public_
|
|
- {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: [networks, public]}
|
|
port_security_enabled: False
|
|
|
|
public_bond_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - public_
|
|
- {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: [networks, public]}
|
|
port_security_enabled: False
|
|
|
|
outputs:
|
|
ports:
|
|
value:
|
|
- {port: {get_resource: provision_port}}
|
|
- {port: {get_resource: public_port}}
|
|
- {port: {get_resource: public_bond_port}}
|
|
- {port: {get_resource: internal_port}}
|
|
- {port: {get_resource: storage_port}}
|
|
- {port: {get_resource: storage_mgmt_port}}
|
|
- {port: {get_resource: tenant_port}}
|