openstack-helm/tools/gate/files/heat-subnet-pool-deployment.yaml
Pete Birley ff6e6d19f9 Gate: Heat functional test
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
2017-08-21 13:55:53 -05:00

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}