From: Matt Wisch Date: Fri, 22 Apr 2016 15:09:56 +0000 (-0400) Subject: Fix the ManagementNetValueSpecs param type X-Git-Tag: opnfv-6.0.0~2024^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=26d8931ffd1e7e036f07ef6fac9b364f09cbf783;p=apex-tripleo-heat-templates.git Fix the ManagementNetValueSpecs param type The ManagementNetValueSpecs param type is currently set to string. This change sets the param to the correct type of json, allowing the network value specs to correctly parse. Example Management Network value spec: {'provider:physical_network': 'management', 'provider:network_type': 'flat'} Change-Id: I5b12c7251690368d79a4d00725a9d6e0d5e75af8 Closes-Bug: #1573649 --- diff --git a/network/management.yaml b/network/management.yaml index 1800b57a..6878bac4 100644 --- a/network/management.yaml +++ b/network/management.yaml @@ -13,7 +13,7 @@ parameters: ManagementNetValueSpecs: default: {'provider:physical_network': 'management', 'provider:network_type': 'flat'} description: Value specs for the management network. - type: string + type: json ManagementNetAdminStateUp: default: false description: The admin state of the network.