Fixes missing type for heat param TenantNetName

Closes-Bug: 1720823

Change-Id: I239cc9f827fe99a553f9c18b80336bc6ce0b1d14
Signed-off-by: Tim Rozet <trozet@redhat.com>
This commit is contained in:
Tim Rozet 2017-10-02 11:52:56 -04:00
parent 5169722da3
commit ba5436099d
2 changed files with 5 additions and 24 deletions

View File

@ -21,30 +21,6 @@ parameters:
NetworkHostnameMap:
default: []
type: json
InternalApiNetName:
default: internal_api
description: The name of the internal_api network.
type: string
ExternalNetName:
default: external
description: The name of the external network.
type: string
ManagementNetName:
default: management
description: The name of the management network.
type: string
StorageNetName:
default: storage
description: The name of the storage network.
type: string
StorageMgmtNetName:
default: storage_mgmt
description: The name of the storage_mgmt network.
type: string
TenantNetName:
default: tenant
description: The name of the tenant network.
{%- for network in networks %}
{{network.name}}NetName:
default: {{network.name_lower}}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Removes hardcoded network names. The networks are
now defined dynamically by network_data.yaml.