multi-node-bridge: repos to install ovs in C9
With this patch, Adding repos to install openvswitch in Centos9 stream. For Centos9 stream nodes we need to enable 2 repos:- * nfv repo - Ussuri+ openvswitch is shipped as part of NFV SIG * rdo xena repo - rdo-openvswitch(which provides openvswitch wrapper) is available in OpenStack repo Closes-Bug: #1947665 Change-Id: If5a32b30637296a070f2e75ba8feb6aa45d8ecac
This commit is contained in:
parent
72d4e506d5
commit
a795073493
@ -10,7 +10,7 @@ baseurl=http://mirror.centos.org/centos/7/cloud/$basearch/openstack-queens/
|
|||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
enabled=1
|
enabled=1
|
||||||
gpgkey=file:///tmp/RPM-GPG-KEY-CentOS-SIG-Cloud
|
gpgkey=file:///tmp/RPM-GPG-KEY-CentOS-SIG-Cloud
|
||||||
{% elif ansible_distribution in ['CentOS', 'RedHat'] and ansible_distribution_major_version|int >= 8 %}
|
{% elif ansible_distribution in ['CentOS', 'RedHat'] and ansible_distribution_major_version|int == 8 %}
|
||||||
[RDO-CentOS8-deps]
|
[RDO-CentOS8-deps]
|
||||||
name=CentOS OpenStack Train Repository
|
name=CentOS OpenStack Train Repository
|
||||||
{% if zuul_site_mirror_fqdn is defined %}
|
{% if zuul_site_mirror_fqdn is defined %}
|
||||||
@ -20,4 +20,25 @@ baseurl=http://mirror.centos.org/centos/8/cloud/$basearch/openstack-train/
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
gpgcheck=0
|
gpgcheck=0
|
||||||
enabled=1
|
enabled=1
|
||||||
|
# TODO: Replace testing repo once C9 released repos as available. Currently Centos9 stream release
|
||||||
|
# repos are not available so need to use testing repo available at buildlogs.centos.org.
|
||||||
|
{% elif ansible_distribution in ['CentOS', 'RedHat'] and ansible_distribution_major_version|int == 9 %}
|
||||||
|
[RDO-CentOS9-stream-deps]
|
||||||
|
name=CentOS OpenStack Xena Repository
|
||||||
|
{% if zuul_site_mirror_fqdn is defined %}
|
||||||
|
baseurl=http://{{ zuul_site_mirror_fqdn }}:8080/buildlogs.centos/9-stream/cloud/x86_64/openstack-xena/
|
||||||
|
{% else %}
|
||||||
|
baseurl=https://buildlogs.centos.org/centos/9-stream/cloud/x86_64/openstack-xena/
|
||||||
|
{% endif %}
|
||||||
|
gpgcheck=0
|
||||||
|
enabled=1
|
||||||
|
[RDO-CentOS9-stream-nfv]
|
||||||
|
name=CentOS9 Stream NFV Repository
|
||||||
|
{% if zuul_site_mirror_fqdn is defined %}
|
||||||
|
baseurl=http://{{ zuul_site_mirror_fqdn }}:8080/buildlogs.centos/9-stream/nfv/x86_64/openvswitch-2/
|
||||||
|
{% else %}
|
||||||
|
baseurl=https://buildlogs.centos.org/centos/9-stream/nfv/x86_64/openvswitch-2/
|
||||||
|
{% endif %}
|
||||||
|
gpgcheck=0
|
||||||
|
enabled=1
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user