Pin iptables to 1.8.4 in Centos Stream 8

Bug in Centos Stream 8:
[1] https://bugzilla.redhat.com/show_bug.cgi?id=2236501

Change-Id: I87c5c3792c400f9bc90d00ebc5fc858f3a2b02e2
(cherry picked from commit 8f076857fd)
This commit is contained in:
Bartosz Bezak 2023-08-31 14:45:02 +02:00
parent f1d1881e95
commit a76d93dfb9

View File

@ -57,7 +57,6 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'haproxy',
'iproute-tc',
'ipset',
'iptables',
'iputils',
'keepalived',
'net-tools',
@ -67,6 +66,16 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'uuid'
] %}
{% if base_distro == "centos" and base_distro_tag.startswith('stream8') %}
{% set neutron_base_packages = neutron_base_packages + [
'iptables-1.8.4*'
] %}
{% else %}
{% set neutron_base_packages = neutron_base_packages + [
'iptables'
] %}
{% endif %}
{% elif base_package_type == 'deb' %}
{% set neutron_base_packages = [