aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2015-09-08 14:48:58 -0400
committerDan Prince <dprince@redhat.com>2015-09-08 14:48:58 -0400
commitf1ed8ace5ec909f7f3674c72f0ae99ecaeb0998e (patch)
treebc13d407d8f1db5a082bdc93903635dc816ef182
parent9a8e384a145b48ef9d7f58da13bc828bbc79941d (diff)
Set NetValueSpecs parameter types to Json
The latest Heat API is a bit more strict in validating the datatypes for the OS::Neutron::Net value_specs. This patch converts the default parameter types for these from string to json. Change-Id: Iaad6ee6417d3ae55c52ffe2f4e6ed79124161923 Closes-bug: #1493502
-rw-r--r--network/external.yaml2
-rw-r--r--network/internal_api.yaml2
-rw-r--r--network/storage.yaml2
-rw-r--r--network/storage_mgmt.yaml2
-rw-r--r--network/tenant.yaml2
5 files changed, 5 insertions, 5 deletions
diff --git a/network/external.yaml b/network/external.yaml
index bf4bdfe7..e8f92a5e 100644
--- a/network/external.yaml
+++ b/network/external.yaml
@@ -12,7 +12,7 @@ parameters:
ExternalNetValueSpecs:
default: {'provider:physical_network': 'external', 'provider:network_type': 'flat'}
description: Value specs for the external network.
- type: string
+ type: json
ExternalNetAdminStateUp:
default: false
description: This admin state of of the network.
diff --git a/network/internal_api.yaml b/network/internal_api.yaml
index c7e822e9..69154bef 100644
--- a/network/internal_api.yaml
+++ b/network/internal_api.yaml
@@ -12,7 +12,7 @@ parameters:
InternalApiNetValueSpecs:
default: {'provider:physical_network': 'internal_api', 'provider:network_type': 'flat'}
description: Value specs for the internal API network.
- type: string
+ type: json
InternalApiNetAdminStateUp:
default: false
description: This admin state of of the network.
diff --git a/network/storage.yaml b/network/storage.yaml
index d403f9e5..60b779e0 100644
--- a/network/storage.yaml
+++ b/network/storage.yaml
@@ -12,7 +12,7 @@ parameters:
StorageNetValueSpecs:
default: {'provider:physical_network': 'storage', 'provider:network_type': 'flat'}
description: Value specs for the storage network.
- type: string
+ type: json
StorageNetAdminStateUp:
default: false
description: This admin state of of the network.
diff --git a/network/storage_mgmt.yaml b/network/storage_mgmt.yaml
index d0c919b5..043bc87b 100644
--- a/network/storage_mgmt.yaml
+++ b/network/storage_mgmt.yaml
@@ -12,7 +12,7 @@ parameters:
StorageMgmtNetValueSpecs:
default: {'provider:physical_network': 'storage_mgmt', 'provider:network_type': 'flat'}
description: Value specs for the storage_mgmt network.
- type: string
+ type: json
StorageMgmtNetAdminStateUp:
default: false
description: This admin state of of the network.
diff --git a/network/tenant.yaml b/network/tenant.yaml
index 055b87b8..daf5cb75 100644
--- a/network/tenant.yaml
+++ b/network/tenant.yaml
@@ -12,7 +12,7 @@ parameters:
TenantNetValueSpecs:
default: {'provider:physical_network': 'tenant', 'provider:network_type': 'flat'}
description: Value specs for the tenant network.
- type: string
+ type: json
TenantNetAdminStateUp:
default: false
description: This admin state of of the network.