1965bcdfd2
This adds an implementation of OS::OVB::PrivateNetwork which creates a private network and routes it to the external network. This has been tested by creating the stack and confirming connectivity from external -> undercloud -> bmc, but has not yet been tested with a full overcloud deploy.
19 lines
466 B
YAML
19 lines
466 B
YAML
heat_template_version: 2015-04-30
|
|
|
|
# Template which provides a private network which is routed to an external
|
|
# network. This template just passes through the name of an already created
|
|
# private network.
|
|
|
|
parameters:
|
|
external_net:
|
|
type: string
|
|
description: An external network from which floating ips can be provisioned
|
|
|
|
private_net:
|
|
type: string
|
|
description: Name of private network
|
|
|
|
outputs:
|
|
private_net:
|
|
value: {get_param: private_net}
|