Add external verify job for HELM
This new verify job will:
- Apply to code transfered outside OOM repo into the
tech team's repos.
- Get triggered by any submitted changes in
<component>/oom repos.
- Apply the change in oom/kubernetes/<component>
- Run a helm verify
Change-Id: I4bd60f946351623583589d7689343fbfc826237a
Issue-ID: CIMAN-250
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
diff --git a/jjb/aai/aai-oom.yaml b/jjb/aai/aai-oom.yaml
new file mode 100644
index 0000000..7581e77
--- /dev/null
+++ b/jjb/aai/aai-oom.yaml
@@ -0,0 +1,36 @@
+---
+- project:
+ name: aai-oom-project-view
+ project-name: aai-oom
+ views:
+ - project-view
+
+- project:
+ name: aai-oom
+ helm-module: 'aai'
+ project-name: 'aai-oom'
+ project: 'aai/oom'
+ jobs:
+ - '{project-name}-{stream}-verify-external-helm'
+ stream:
+ - 'master':
+ branch: 'master'
+ mvn-settings: 'aai-oom-settings'
+ files: '**'
+ archive-artifacts: ''
+ build-node: ubuntu1604-helm-2c-1g
+ pre_build_script: !include-raw-escape: shell/helm-repo-init.sh
+ oom_build_script: |
+ #!/bin/bash
+ set -e -o pipefail
+ cd kubernetes/
+ make all
+ subproject_build_script: |
+ #!/bin/bash
+ cd kubernetes/
+ make common
+ make {subproject}
+ oom_post_build_script: !include-raw-escape: shell/publish_helm_charts.sh
+ subproject:
+ - 'aai':
+ files: 'kubernetes/aai/**'