Use Train repo to install openvswitch from multi-node-bridge in CentOS 8

Currently it's using master repo for CentOS 8. RDO s updating the version of
OVS in master to 2.13 while previous releases use version 2.12 so it's a
problem to install 2.13 for jobs gating reviews for Train or Ussuri.

This review is moving to use Train repository to install openvswitch in
all CentOS 8 jobs as it's the older version supported on CentOS 8. Note
that CI jobs running with this multi-node setup configure proper repos for
the tested release (ussuri, victoria or master) at a later stage and
update the version of OpenvSwitch to the one included on each specific
release repo.

Closes-Bug: #1896469

Change-Id: Ie30997f360b285131cb5051d582da2a15cca7205
This commit is contained in:
Alfredo Moralejo 2020-09-21 12:17:06 +02:00
parent 73c4e795f3
commit 1dbba7f70e
1 changed files with 6 additions and 2 deletions

View File

@ -12,8 +12,12 @@ enabled=1
gpgkey=file:///tmp/RPM-GPG-KEY-CentOS-SIG-Cloud
{% elif ansible_distribution in ['CentOS', 'RedHat'] and ansible_distribution_major_version|int >= 8 %}
[RDO-CentOS8-deps]
name=CentOS OpenStack deps repo
baseurl=https://trunk.rdoproject.org/centos8-master/deps/latest/
name=CentOS OpenStack Train Repository
{% if zuul_site_mirror_fqdn is defined %}
baseurl=http://{{ zuul_site_mirror_fqdn }}/centos/8/cloud/$basearch/openstack-train/
{% else %}
baseurl=http://mirror.centos.org/centos/8/cloud/$basearch/openstack-train/
{% endif %}
gpgcheck=0
enabled=1
{% endif %}