From: Anil Belur Date: Fri, 24 Mar 2017 02:05:53 +0000 (+0000) Subject: Merge "Add job to automatically cleanup old images" X-Git-Tag: release/boron-sr3~51 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=9fb02ffd64be734a874f6fb0563731fd4870f9fd;hp=d2485d78d895d07ce28daf8795cef228d8cdff55;p=releng%2Fbuilder.git Merge "Add job to automatically cleanup old images" --- diff --git a/jjb/opendaylight-infra-cleanup-old-images.sh b/jjb/opendaylight-infra-cleanup-old-images.sh new file mode 100644 index 000000000..129ab1336 --- /dev/null +++ b/jjb/opendaylight-infra-cleanup-old-images.sh @@ -0,0 +1,18 @@ +#!/bin/bash +LFTOOLS_DIR="$WORKSPACE/.venv-lftools" +if [ ! -d "$LFTOOLS_DIR" ] +then + virtualenv "$LFTOOLS_DIR" + # shellcheck disable=SC1090 + source "$LFTOOLS_DIR/bin/activate" + pip install --upgrade pip + pip install "lftools>=0.0.10" + pip freeze +fi +# shellcheck disable=SC1090 +source "$LFTOOLS_DIR/bin/activate" + +lftools openstack --os-cloud odlpriv-sandbox \ + image cleanup --hide-public=True \ + --days=30 \ + --clouds=odlpriv-sandbox,rackspace diff --git a/jjb/releng-jobs.yaml b/jjb/releng-jobs.yaml index ba0563ebe..45e3d44c2 100644 --- a/jjb/releng-jobs.yaml +++ b/jjb/releng-jobs.yaml @@ -10,6 +10,7 @@ - 'builder-verify-packer' - 'builder-merge-packer-{platforms}-{templates}' # OpenStack Related + - 'builder-cleanup-old-images' - 'builder-delete-stale-stacks' # Automation for docs and jobs - 'builder-update-csit-tests' @@ -295,6 +296,49 @@ - opendaylight-infra-shiplogs: maven-version: 'mvn33' +- job-template: + name: 'builder-cleanup-old-images' + project-type: freestyle + node: centos7-java-builder-2c-4g + + properties: + - opendaylight-infra-properties: + build-days-to-keep: 7 + + parameters: + - opendaylight-infra-parameters: + project: '{project}' + branch: '{branch}' + refspec: 'refs/heads/{branch}' + artifacts: '{archive-artifacts}' + + scm: + - git-scm: + branch: '{branch}' + + wrappers: + - opendaylight-infra-wrappers: + build-timeout: '{build-timeout}' + # Listed after to override openstack-infra-wrappers clouds.yaml definition + - config-file-provider: + files: + - file-id: opendaylight-private-clouds-yaml + target: '$HOME/.config/openstack/clouds.yaml' + + triggers: + # Cleanup images on a weekly schedule + - timed: '@weekly' + + builders: + - shell: !include-raw-escape: opendaylight-infra-cleanup-old-images.sh + + publishers: + - email-notification: + email-recipients: '{email-recipients}' + email-prefix: '[releng]' + - opendaylight-infra-shiplogs: + maven-version: 'mvn33' + - job-template: name: 'builder-update-image-list' project-type: freestyle