Use exact Ubuntu Xenial release.

By specifying exact ubuntu release as a tag for `updater.py` script, it prevents
downloading ubuntu with a higher release, for example, ubuntu bionic.
Changing bionic to xenial for armada chart.

Change-Id: I1864c3f8db2d90ab63d7d923de8f2ac0ecd20e31
This commit is contained in:
Alexander Noskov 2019-06-17 05:49:56 +00:00
parent f355cebd09
commit 92c43b00ce
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ data:
values:
images:
tags:
api: quay.io/airshipit/armada:latest-ubuntu_bionic
api: quay.io/airshipit/armada:latest-ubuntu_xenial
pod:
replicas:
api: 1

View File

@ -239,7 +239,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 --tag-filter ubuntu'
def cmd = 'tools/updater.py --in-file global/software/config/versions.yaml --tag-filter ubuntu_xenial'
if (!UPLIFT_BLACKLIST.isEmpty()) {
cmd += " --skip ${UPLIFT_BLACKLIST}"

View File

@ -234,7 +234,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 --tag-filter ubuntu'
def cmd = 'tools/updater.py --in-file global/software/config/versions.yaml --tag-filter ubuntu_xenial'
if (!UPLIFT_BLACKLIST.isEmpty()) {
cmd += " --skip ${UPLIFT_BLACKLIST}"