ff6e6d19f9
This PS adds a functional test of heat in the OSH gates, it also moves most params to a seperate file - making config of the gate in non-zuul environments simpler. Change-Id: I37a1bc0dcc8000c5da8067a8d376c78f7cd6f7ab
25 lines
560 B
YAML
25 lines
560 B
YAML
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
subnet_pool_name:
|
|
type: string
|
|
default: shared-default-subnetpool
|
|
|
|
subnet_pool_prefixes:
|
|
type: comma_delimited_list
|
|
default: ["10.0.0.0/8"]
|
|
|
|
subnet_pool_default_prefix_length:
|
|
type: number
|
|
default: 24
|
|
|
|
resources:
|
|
public_net:
|
|
type: OS::Neutron::SubnetPool
|
|
properties:
|
|
name: {get_param: subnet_pool_name}
|
|
shared: true
|
|
is_default: true
|
|
default_prefixlen: {get_param: subnet_pool_default_prefix_length}
|
|
prefixes: {get_param: subnet_pool_prefixes}
|