1 heat_template_version: 2015-04-30
4 Storage management network. Storage replication, etc.
7 # the defaults here work for static IP assignment (IPAM) only
9 default: '172.16.3.0/24'
10 description: Cidr for the storage management network.
12 StorageMgmtNetValueSpecs:
13 default: {'provider:physical_network': 'storage_mgmt', 'provider:network_type': 'flat'}
14 description: Value specs for the storage_mgmt network.
16 StorageMgmtNetAdminStateUp:
18 description: This admin state of of the network.
20 StorageMgmtNetEnableDHCP:
22 description: Whether to enable DHCP on the associated subnet.
26 description: Whether this network is shared across all tenants.
30 description: The name of the Storage management network.
32 StorageMgmtSubnetName:
33 default: storage_mgmt_subnet
34 description: The name of the Storage management subnet in Neutron.
36 StorageMgmtAllocationPools:
37 default: [{'start': '172.16.3.4', 'end': '172.16.3.250'}]
38 description: Ip allocation pool range for the storage mgmt network.
43 type: OS::Neutron::Net
45 admin_state_up: {get_param: StorageMgmtNetAdminStateUp}
46 name: {get_param: StorageMgmtNetName}
47 shared: {get_param: StorageMgmtNetShared}
48 value_specs: {get_param: StorageMgmtNetValueSpecs}
51 type: OS::Neutron::Subnet
53 cidr: {get_param: StorageMgmtNetCidr}
54 enable_dhcp: {get_param: StorageMgmtNetEnableDHCP}
55 name: {get_param: StorageMgmtSubnetName}
56 network: {get_resource: StorageMgmtNetwork}
57 allocation_pools: {get_param: StorageMgmtAllocationPools}
61 description: Neutron storage management network
62 value: {get_resource: StorageMgmtNetwork}