[wip] see if rdo trunk repos work for openvswitch on centos8

Change-Id: I2eb1a16e9995a19d61e309aa59b232577184b527
This commit is contained in:
Ian Wienand 2019-11-25 12:05:33 +11:00
parent dfd4961e4a
commit 3d63a92b66
2 changed files with 15 additions and 1 deletions

View File

@ -16,4 +16,13 @@ name=RedHat Openstack deps repo
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/
gpgcheck=0
enabled=1
{% endif %}

View File

@ -1,3 +1,8 @@
---
ovs_package: "openvswitch"
ovs_package: >-
{% if ansible_distribution_major_version|int >= 8 -%}
rhosp-openvswitch
{%- else -%}
openvswitch
{%- endif %}
ovs_service: "openvswitch"