Merge "Set the nova scheduler ram_allocation_ration to 1.0"
[apex-tripleo-heat-templates.git] / network / ports / net_ip_subnet_map.yaml
1 heat_template_version: 2015-04-30
2
3 parameters:
4   ControlPlaneIp:
5     default: ''
6     type: string
7   ExternalIpSubnet:
8     default: ''
9     type: string
10   InternalApiIpSubnet:
11     default: ''
12     type: string
13   StorageIpSubnet:
14     default: ''
15     type: string
16   StorageMgmtIpSubnet:
17     default: ''
18     type: string
19   TenantIpSubnet:
20     default: ''
21     type: string
22   ControlPlaneSubnetCidr: # Override this via parameter_defaults
23     default: '24'
24     description: The subnet CIDR of the control plane network.
25     type: string
26
27 outputs:
28   net_ip_subnet_map:
29     description: >
30       A Hash containing a mapping of network names to assigned
31       IP/subnet mappings.
32     value:
33       ctlplane:
34         list_join:
35           - ''
36           - - {get_param: ControlPlaneIp}
37             - '/'
38             - {get_param: ControlPlaneSubnetCidr}
39       external: {get_param: ExternalIpSubnet}
40       internal_api: {get_param: InternalApiIpSubnet}
41       storage: {get_param: StorageIpSubnet}
42       storage_mgmt: {get_param: StorageMgmtIpSubnet}
43       tenant: {get_param: TenantIpSubnet}