summaryrefslogtreecommitdiffstats
path: root/network/ports/net_ip_subnet_map.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-05-24 10:34:32 +0000
committerGerrit Code Review <review@openstack.org>2016-05-24 10:34:32 +0000
commitd1e548cbfaa24bdaf4659b864bd61b5f6f769908 (patch)
treef838d9159fb68d7571f8b0e4ac3a6c24eafc510e /network/ports/net_ip_subnet_map.yaml
parent6a962c59e902d626b11a9fea3825d0faaf2b3007 (diff)
parent947f47ce9038b634f52491de63d6747808c06b9e (diff)
Merge "Dump IPs configuration as hieradata"
Diffstat (limited to 'network/ports/net_ip_subnet_map.yaml')
-rw-r--r--network/ports/net_ip_subnet_map.yaml47
1 files changed, 0 insertions, 47 deletions
diff --git a/network/ports/net_ip_subnet_map.yaml b/network/ports/net_ip_subnet_map.yaml
deleted file mode 100644
index 2f933eaa..00000000
--- a/network/ports/net_ip_subnet_map.yaml
+++ /dev/null
@@ -1,47 +0,0 @@
-heat_template_version: 2015-04-30
-
-parameters:
- ControlPlaneIp:
- default: ''
- type: string
- ExternalIpSubnet:
- default: ''
- type: string
- InternalApiIpSubnet:
- default: ''
- type: string
- StorageIpSubnet:
- default: ''
- type: string
- StorageMgmtIpSubnet:
- default: ''
- type: string
- TenantIpSubnet:
- default: ''
- type: string
- ManagementIpSubnet:
- default: ''
- type: string
- ControlPlaneSubnetCidr: # Override this via parameter_defaults
- default: '24'
- description: The subnet CIDR of the control plane network.
- type: string
-
-outputs:
- net_ip_subnet_map:
- description: >
- A Hash containing a mapping of network names to assigned
- IP/subnet mappings.
- value:
- ctlplane:
- list_join:
- - ''
- - - {get_param: ControlPlaneIp}
- - '/'
- - {get_param: ControlPlaneSubnetCidr}
- external: {get_param: ExternalIpSubnet}
- internal_api: {get_param: InternalApiIpSubnet}
- storage: {get_param: StorageIpSubnet}
- storage_mgmt: {get_param: StorageMgmtIpSubnet}
- tenant: {get_param: TenantIpSubnet}
- management: {get_param: ManagementIpSubnet}