From d33109b19347682891b705c1b0b65db76b2df96d Mon Sep 17 00:00:00 2001 From: Logan V Date: Thu, 4 Oct 2018 11:56:23 -0500 Subject: [PATCH] Add networks to Limestone vendor Add the network configurations to the Limestone vendor config Change-Id: I1f7c0b10e391c59edae17acbc06da239f953a0a0 --- .../config/vendors/limestonenetworks.json | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/openstack/config/vendors/limestonenetworks.json b/openstack/config/vendors/limestonenetworks.json index 659a95b9f..dcef5ae19 100644 --- a/openstack/config/vendors/limestonenetworks.json +++ b/openstack/config/vendors/limestonenetworks.json @@ -10,6 +10,27 @@ ], "identity_api_version": "3", "image_format": "raw", - "volume_api_version": "3" + "volume_api_version": "3", + "networks": [ + { + "name": "Public Internet", + "routes_externally": true, + "default_interface": true, + "nat_source": true + }, + { + "name": "DDoS Protected", + "routes_externally": true + }, + { + "name": "Private Network (10.0.0.0/8 only)", + "routes_externally": false + }, + { + "name": "Private Network (Floating Public)", + "routes_externally": false, + "nat_destination": true + } + ] } }