diff options
author | gfraboni <gino.fraboni@amdocs.com> | 2017-09-27 11:24:35 -0400 |
---|---|---|
committer | Gino Fraboni <gino.fraboni@amdocs.com> | 2017-09-28 18:56:00 +0000 |
commit | df68f2e1de1aa61a5c3a9b112718d7b2f76e2600 (patch) | |
tree | b6a5591a12424bc2a1384383fb1f9661565f424e | |
parent | de9a3012c0b3f0ed274ca3098e4e58cbf1db9dc8 (diff) |
JJB templates to build One-Click Config docker img
Add templates for a Jenkins Job to build and publish the Docker image
for the One-Click configuration pod.
Issue-ID: OOM-327
Change-Id: I45322a220c573d5037104d1a68b58a4541ac4964
Signed-off-by: gfraboni <gino.fraboni@amdocs.com>
-rw-r--r-- | jjb/oom/oneclick-config-build-docker-image.sh | 12 | ||||
-rw-r--r-- | jjb/oom/oneclick-config-make-tar.sh | 12 | ||||
-rw-r--r-- | jjb/oom/oom-oneclick-config.yaml | 42 |
3 files changed, 66 insertions, 0 deletions
diff --git a/jjb/oom/oneclick-config-build-docker-image.sh b/jjb/oom/oneclick-config-build-docker-image.sh new file mode 100644 index 000000000..2cee98fbc --- /dev/null +++ b/jjb/oom/oneclick-config-build-docker-image.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# +echo '========= CALLING SCRIPT TO BUILD ONECLICK CONFIG TAR FILE =========' + +CURRENTDIR="$(pwd)" +echo $CURRENTDIR + +cd kubernetes/config/docker/init + +chmod 755 *.* + +docker build diff --git a/jjb/oom/oneclick-config-make-tar.sh b/jjb/oom/oneclick-config-make-tar.sh new file mode 100644 index 000000000..da2da2000 --- /dev/null +++ b/jjb/oom/oneclick-config-make-tar.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# +echo '========= CALLING SCRIPT TO BUILD ONECLICK CONFIG TAR FILE =========' + +CURRENTDIR="$(pwd)" +echo $CURRENTDIR + +cd kubernetes/config/docker/init + +chmod 755 *.* + +./make-tar.sh diff --git a/jjb/oom/oom-oneclick-config.yaml b/jjb/oom/oom-oneclick-config.yaml new file mode 100644 index 000000000..be7946237 --- /dev/null +++ b/jjb/oom/oom-oneclick-config.yaml @@ -0,0 +1,42 @@ +--- +- project: + name: oomconfig + project-name: 'oomconfig' + project: 'oom' + + files: '**' + archive-artifacts: '' + build-timeout: 60 + build-node: ubuntu1604-docker-8c-8g + submodule-recursive: true + + jobs: + - '{project}-{stream}-release-config' + stream: + - 'master': + branch: 'master' + +- job-template: + name: '{project}-{stream}-release-config' + project-type: freestyle + node: '{build-node}' + + properties: + - infra-properties: + build-days-to-keep: 14 + + scm: + - gerrit-trigger-scm: + refspec: 'refs/heads/master' + choosing-strategy: 'gerrit' + submodule-recursive: '{submodule-recursive}' + + wrappers: + - infra-wrappers: + build-timeout: '{build-timeout}' + + builders: + - docker-login + - shell: !include-raw-escape: oneclick-config-make-tar.sh + - shell: !include-raw-escape: oneclick-config-build-docker-image.sh + - shell: !include-raw-escape: ../include-docker-push.sh |