b335209154
Also add the ability to test the deployment with Ubuntu Minimal VM. Sometimes it is useful for debug. Change-Id: Ibfcf45c550176a50fdd03442479c66f9f1e0a94d
29 lines
588 B
YAML
29 lines
588 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:
|
|
- 192.168.128.0/20
|
|
|
|
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
|