From 75d896ab97b543381358f5ade11323d61d9651a2 Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Tue, 18 Feb 2020 15:34:06 +0100 Subject: [PATCH] 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 --- .../templates/zuul-multi-node-bridge-ovs.repo.j2 | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/roles/multi-node-bridge/templates/zuul-multi-node-bridge-ovs.repo.j2 b/roles/multi-node-bridge/templates/zuul-multi-node-bridge-ovs.repo.j2 index 3905ab3ec..eab30dcc1 100644 --- a/roles/multi-node-bridge/templates/zuul-multi-node-bridge-ovs.repo.j2 +++ b/roles/multi-node-bridge/templates/zuul-multi-node-bridge-ovs.repo.j2 @@ -17,12 +17,9 @@ baseurl=https://trunk.rdoproject.org/rhel8-master/deps/latest/ gpgcheck=0 enabled=1 {% elif ansible_distribution == 'CentOS' and ansible_distribution_major_version|int >= 8 %} -[RDO-RHEL8-deps] -# NOTE(ianw): 2019-11-25 RDO on centos8 is still in the process of -# being built. However, for our openvswitch dependency we can use -# this, for now. -name=RedHat OpenStack deps repo -baseurl=https://trunk.rdoproject.org/rhel8-master/deps/latest/ +[RDO-CentOS8-deps] +name=CentOS OpenStack deps repo +baseurl=https://trunk.rdoproject.org/centos8-master/deps/latest/ gpgcheck=0 enabled=1 {% endif %}