openstack-helm/tools/gate/files/heat-subnet-pool-deployment.yaml
Pete Birley a9bd125f69 Gate: Update heat templates and enable cinder in ceph dev pipeline
This PS updates the heat templates, reducing the size of the
launched vm. In addition cinder is enabled in the ceph dev
pipeline, this is possible due to the resources no longer
consumed by the test vm.

Change-Id: I9efe6fe643c636b660dd54b60dfe7c8785d7fec2
2018-03-30 05:25:08 +00:00

29 lines
582 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