30 lines
739 B
YAML
30 lines
739 B
YAML
![]() |
heat_template_version: queens
|
||
|
|
||
|
description: >
|
||
|
Software Config to no-op for os-net-config. Using this will allow you
|
||
|
to use the parameter driven (init-neutron-ovs) configuration instead.
|
||
|
|
||
|
parameters:
|
||
|
ControlPlaneIp:
|
||
|
default: ''
|
||
|
description: IP address/subnet on the ctlplane network
|
||
|
type: string
|
||
|
{%- for network in networks %}
|
||
|
{{network.name}}IpSubnet:
|
||
|
default: ''
|
||
|
description: IP address/subnet on the {{network.name_lower}} network
|
||
|
type: string
|
||
|
{%- endfor %}
|
||
|
|
||
|
resources:
|
||
|
OsNetConfigImpl:
|
||
|
type: OS::Heat::StructuredConfig
|
||
|
properties:
|
||
|
group: apply-config
|
||
|
config: {}
|
||
|
|
||
|
outputs:
|
||
|
OS::stack_id:
|
||
|
description: The OsNetConfigImpl resource.
|
||
|
value: {get_resource: OsNetConfigImpl}
|