summaryrefslogtreecommitdiffstats
path: root/network/ports/net_ip_subnet_map.yaml
diff options
context:
space:
mode:
authorGiulio Fidente <gfidente@redhat.com>2016-05-11 15:32:45 +0200
committerGiulio Fidente <gfidente@redhat.com>2016-05-18 19:18:33 +0200
commit947f47ce9038b634f52491de63d6747808c06b9e (patch)
tree28b293d56ceb3a39279959289356ff252506cac1 /network/ports/net_ip_subnet_map.yaml
parent168bc2f6ff7310db6dc4cf957fdbb121419a3fcf (diff)
Dump IPs configuration as hieradata
This might be useful if we switch to %{hiera()} calls to lookup the bind address from within a service. Also gets rid of NetIpSubnetMap and provides same output from NetIpMap instead. Change-Id: I328a417d1f1fff9c31e9ad7b2b5083ac19bc7329
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}