Use CentOS8 dependencies repo to install openvswitch

Currently, centos8 jobs are using old RHEL repo. A repo with CentOS8
packages has been created by RDO, so let's switch to it.

Change-Id: I0df0950de5a42bb7a425609c3d5d065550d956f4
This commit is contained in:
Alfredo Moralejo 2020-02-18 15:34:06 +01:00 committed by yatin
parent 2e33459b3e
commit 75d896ab97

View File

@ -17,12 +17,9 @@ baseurl=https://trunk.rdoproject.org/rhel8-master/deps/latest/
gpgcheck=0 gpgcheck=0
enabled=1 enabled=1
{% elif ansible_distribution == 'CentOS' and ansible_distribution_major_version|int >= 8 %} {% elif ansible_distribution == 'CentOS' and ansible_distribution_major_version|int >= 8 %}
[RDO-RHEL8-deps] [RDO-CentOS8-deps]
# NOTE(ianw): 2019-11-25 RDO on centos8 is still in the process of name=CentOS OpenStack deps repo
# being built. However, for our openvswitch dependency we can use baseurl=https://trunk.rdoproject.org/centos8-master/deps/latest/
# this, for now.
name=RedHat OpenStack deps repo
baseurl=https://trunk.rdoproject.org/rhel8-master/deps/latest/
gpgcheck=0 gpgcheck=0
enabled=1 enabled=1
{% endif %} {% endif %}