Skip to content

Commit e3f80e4

Browse files
committed
Install iptables-nft explicitly
We installed this package in previous releases, so to prevent a mixture of legacy and nftables firewall rules, we should explitly install the iptables-nft package. Closes-Bug: #2144562 Change-Id: I2bba43407a10edb283d8605d579667cb8d8e3126 Signed-off-by: Will Szumski <will@stackhpc.com>
1 parent e4474a5 commit e3f80e4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

docker/neutron/neutron-base/Dockerfile.j2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
1212

1313
{% if base_package_type == 'rpm' %}
1414

15+
# FIXME(wszumski): iptables-nft is deprecated. We need to advise users
16+
# to migrate to some other firewall driver as we cannot rely on this
17+
# package forever, see: https://access.redhat.com/solutions/6739041
1518
{% set neutron_base_packages = [
1619
'conntrack-tools',
1720
'dnsmasq',
@@ -21,6 +24,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
2124
'iproute-tc',
2225
'ipset',
2326
'iptables',
27+
'iptables-nft',
2428
'iputils',
2529
'keepalived',
2630
'net-tools',

0 commit comments

Comments
 (0)