From f1369bde8cdf5251f161a2a00a8314be3dabbef4 Mon Sep 17 00:00:00 2001 From: Roman Gorshunov Date: Tue, 21 May 2019 17:52:24 +0200 Subject: [PATCH] Update Jenkinsfile's to use Ubuntu-based images Update Jenkinsfile's to use Ubuntu-based images to deploy airskiff and seaworthy sites. Change-Id: I1b33493081f8618d91c66088e943f6033d71e3c5 --- doc/source/airsloop.rst | 2 ++ doc/source/seaworthy.rst | 2 ++ tools/gate/Jenkinsfile | 2 +- tools/gate/airsloop/Jenkinsfile | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/source/airsloop.rst b/doc/source/airsloop.rst index 890f3942a..9e0dd0cc3 100644 --- a/doc/source/airsloop.rst +++ b/doc/source/airsloop.rst @@ -33,6 +33,8 @@ are setup to deploy OpenStack Ocata. The versions are kept up to date via `updater.py `__, a utility that updates versions.yaml latest charts and (selected) images. +Due to the limited capacity of a test environment, only Ubuntu-based images are used at the moment. + The pipeline attempts to uplift and deploy latest versions on daily basis. diff --git a/doc/source/seaworthy.rst b/doc/source/seaworthy.rst index 29dc6319e..9fb3b9d82 100644 --- a/doc/source/seaworthy.rst +++ b/doc/source/seaworthy.rst @@ -26,6 +26,8 @@ are setup to deploy OpenStack Ocata. The versions are kept up to date via `updater.py `__, a utility that updates versions.yaml latest charts and (selected) images. +Due to the limited capacity of a test environment, only Ubuntu-based images are used at the moment. + The pipeline attempts to uplift and deploy latest versions on daily bases. diff --git a/tools/gate/Jenkinsfile b/tools/gate/Jenkinsfile index d36935781..a6b0d686a 100644 --- a/tools/gate/Jenkinsfile +++ b/tools/gate/Jenkinsfile @@ -232,7 +232,7 @@ def uplift_versions = { stage('Uplift Versions') { sh 'sudo apt-get install python3-yaml python3-git -y' - def cmd = 'tools/updater.py --in-file global/software/config/versions.yaml' + def cmd = 'tools/updater.py --in-file global/software/config/versions.yaml --tag-filter ubuntu' if (!UPLIFT_BLACKLIST.isEmpty()) { cmd += " --skip ${UPLIFT_BLACKLIST}" diff --git a/tools/gate/airsloop/Jenkinsfile b/tools/gate/airsloop/Jenkinsfile index 9be69c864..a2551339f 100644 --- a/tools/gate/airsloop/Jenkinsfile +++ b/tools/gate/airsloop/Jenkinsfile @@ -232,7 +232,7 @@ def uplift_versions = { stage('Uplift Versions') { sh 'sudo apt-get install python3-yaml python3-git -y' - def cmd = 'tools/updater.py --in-file global/software/config/versions.yaml' + def cmd = 'tools/updater.py --in-file global/software/config/versions.yaml --tag-filter ubuntu' if (!UPLIFT_BLACKLIST.isEmpty()) { cmd += " --skip ${UPLIFT_BLACKLIST}"