Use 3.0.2 tag not master of kind-voltha for voltha-2.3

Change-Id: I14d1d0b2bffcc01ef64e8b9212f36c7ec6139737
(cherry picked from commit f60f883ebc726e4911259117b556f7eca8fe4364)
diff --git a/Jenkinsfile-voltha-build b/Jenkinsfile-voltha-build
index f10ae47..70978ce 100644
--- a/Jenkinsfile-voltha-build
+++ b/Jenkinsfile-voltha-build
@@ -23,7 +23,11 @@
                 sh returnStdout: true, script: "rm -rf ${configBaseDir} voltha-system-tests kind-voltha"
                 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
                 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/voltha-system-tests"
-                sh returnStdout: true, script: "git clone https://github.com/ciena/kind-voltha.git"
+                if (params.branch == "voltha-2.3") {
+                    sh returnStdout: true, script: "git clone -b 3.0.2 https://github.com/ciena/kind-voltha.git"
+                } else {
+                    sh returnStdout: true, script: "git clone https://github.com/ciena/kind-voltha.git"
+                }
                 if ( params.workFlow == "DT" ) {
                     deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
                 }