a9bd125f69
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
49 lines
895 B
YAML
49 lines
895 B
YAML
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
network_name:
|
|
type: string
|
|
default: public
|
|
|
|
physical_network_name:
|
|
type: string
|
|
default: public
|
|
|
|
subnet_name:
|
|
type: string
|
|
default: public
|
|
|
|
subnet_cidr:
|
|
type: string
|
|
default: 172.24.4.0/24
|
|
|
|
subnet_gateway:
|
|
type: string
|
|
default: 172.24.4.1
|
|
|
|
resources:
|
|
public_net:
|
|
type: OS::Neutron::ProviderNet
|
|
properties:
|
|
name:
|
|
get_param: network_name
|
|
router_external: true
|
|
physical_network:
|
|
get_param: physical_network_name
|
|
network_type: flat
|
|
|
|
private_subnet:
|
|
type: OS::Neutron::Subnet
|
|
properties:
|
|
name:
|
|
get_param: subnet_name
|
|
network:
|
|
get_resource: public_net
|
|
cidr:
|
|
get_param: subnet_cidr
|
|
gateway_ip:
|
|
get_param: subnet_gateway
|
|
enable_dhcp: false
|
|
dns_nameservers:
|
|
- 10.96.0.10
|