MWC pod: Modify pipeline for mcord-bbu chart

Change-Id: I38d907a7720a6bc28a9c866ba6044dd843a73b23
diff --git a/Jenkinsfile-mcord-local-build b/Jenkinsfile-mcord-local-build
index 333c34e..ac0c88c 100644
--- a/Jenkinsfile-mcord-local-build
+++ b/Jenkinsfile-mcord-local-build
@@ -125,6 +125,13 @@
             }
 
             // In current development progress, we prefered to keep this for testing eNodeB's functionality
+            stage("Install M-CORD Data Plane Services") {
+                sh returnStdout: true, script: """
+                export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
+                helm install -n mcord-data-plane --namespace epc -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/mcord-data-plane
+                """
+            }
+
             if ( params.installEpcControlPlane ) {
                 stage("Install M-CORD Control Plane Services") {
                     sh returnStdout: true, script: """
@@ -133,11 +140,11 @@
                     """
                 }
             }
-            
-            stage("Install M-CORD Data Plane Services") {
+
+            stage("Install M-CORD BBU Services") {
                 sh returnStdout: true, script: """
                 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
-                helm install -n mcord-data-plane --namespace epc -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/mcord-data-plane
+                helm install -n mcord-bbu --namespace epc -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/mcord-bbu
                 """
             }