VOLTHA Automated Testing: Provisioning Test Init

Change-Id: I0e709473392e90981a0041893a22f8e28beb8d43
diff --git a/jjb/pipeline/voltha-atest-provisioning.groovy b/jjb/pipeline/voltha-atest-provisioning.groovy
new file mode 100644
index 0000000..6b90973
--- /dev/null
+++ b/jjb/pipeline/voltha-atest-provisioning.groovy
@@ -0,0 +1,18 @@
+/* voltha-atest-provisioning pipeline */
+
+pipeline {
+
+  /* no label, executor is determined by JJB */
+  agent {
+    label "${params.executorNode}"
+  }
+
+  stages {
+
+    stage ('Start Provisioning Test') {
+      steps {
+        println 'Start Provisioning Test'
+      }
+    }
+  }
+}
diff --git a/jjb/voltha-atest-provisioning.yaml b/jjb/voltha-atest-provisioning.yaml
new file mode 100644
index 0000000..96f307d
--- /dev/null
+++ b/jjb/voltha-atest-provisioning.yaml
@@ -0,0 +1,55 @@
+---
+# CORD helm chart publishing tasks
+
+- project:
+    name: voltha-atest-provisioning
+
+    project-name: '{name}'
+
+    jobs:
+      - 'voltha-atest-provisioning'
+
+- job-template:
+    id: voltha-atest-provisioning
+    name: 'voltha-atest-provisioning'
+    description: |
+      Created by {id} job-template from ci-management/jjb/voltha-atest-provisioning.yaml
+
+#    triggers:
+#      - cord-infra-gerrit-trigger-merge:
+#          gerrit-server-name: '{gerrit-server-name}'
+#          project-regexp: '{project-regexp}'
+#          branch-regexp: '{branch-regexp}'
+#          file-include-regexp: '{all-files-regexp}'
+#          dependency-jobs: '{dependency-jobs}'
+
+    properties:
+      - cord-infra-properties:
+          build-days-to-keep: '{build-days-to-keep}'
+          artifact-num-to-keep: '{artifact-num-to-keep}'
+
+    wrappers:
+      - lf-infra-wrappers:
+          build-timeout: '{build-timeout}'
+          jenkins-ssh-credential: '{jenkins-ssh-credential}'
+
+    parameters:
+      - string:
+          name: executorNode
+          default: 'ubuntu16.04-basebuild-4c-8g'
+          description: 'Name of the Jenkins node to run the job on'
+
+      - string:
+          name: manifestUrl
+          default: '{gerrit-server-url}/{cord-repo-manifest}'
+          description: 'URL to the repo manifest'
+
+      - string:
+          name: manifestBranch
+          default: '$GERRIT_BRANCH'
+          description: 'Name of the repo branch to use'
+
+    project-type: pipeline
+    concurrent: false
+
+    dsl: !include-raw-escape: pipeline/voltha-atest-provisioning.groovy