Make nova patching parameters configurable in Nuage
authorLokesh Jain <lokesh.jain@gmail.com>
Wed, 23 Aug 2017 22:12:37 +0000 (18:12 -0400)
committerLokesh Jain <lokesh.jain@gmail.com>
Thu, 14 Sep 2017 17:12:14 +0000 (13:12 -0400)
Nova patching parameters are available in nova.conf but are not
configurable from tripleo-heat-templates. Exposing these parameters
from Nuage composable services to make them configurable. It enables
setting the patching parameters in environment files. This change
depends on the addition of nova patching configuration parameters.

Change-Id: Iacad25da044f2bac83ee5f577ddcd70650eb61e5
Depends-On: I51ef3e19daff1d98cfe5c2c16475c16e6a3e3e0f
(cherry picked from commit f0041153eca8d82bb7f72dc68676cab8448ef037)

environments/neutron-nuage-config.yaml
puppet/services/neutron-plugin-ml2-nuage.yaml

index ce64311..fb47770 100644 (file)
@@ -28,6 +28,8 @@ parameter_defaults:
   NeutronTunnelIdRanges: ''
   NeutronNetworkVLANRanges: ''
   NeutronVniRanges: ''
+  NovaPatchConfigMonkeyPatch: false
+  NovaPatchConfigMonkeyPatchModules: ''
   NovaOVSBridge: 'default_bridge'
   NeutronMetadataProxySharedSecret: 'default'
   InstanceNameTemplate: 'inst-%08x'
index a7dc2e8..4cd541c 100644 (file)
@@ -67,6 +67,16 @@ parameters:
     type: boolean
     default: false
 
+  NovaPatchConfigMonkeyPatch:
+    description: Apply monkey patching or not
+    type: boolean
+    default: false
+
+  NovaPatchConfigMonkeyPatchModules:
+    description: List of modules/decorators to monkey patch
+    type: comma_delimited_list
+    default: ''
+
 resources:
 
   NeutronML2Base:
@@ -95,5 +105,7 @@ outputs:
             neutron::plugins::ml2::nuage::nuage_base_uri_version: {get_param: NeutronNuageBaseURIVersion}
             neutron::plugins::ml2::nuage::nuage_cms_id: {get_param: NeutronNuageCMSId}
             nova::api::use_forwarded_for: {get_param: UseForwardedFor}
+            nova::patch::config::monkey_patch: {get_param: NovaPatchConfigMonkeyPatch}
+            nova::patch::config::monkey_patch_modules: {get_param: NovaPatchConfigMonkeyPatchModules}
       step_config: |
         include tripleo::profile::base::neutron::plugins::ml2