Skip to content

Commit b910b2c

Browse files
michaeltchapmanAlex-Welsh
authored andcommitted
Add libnetfilter-log to l3 agent container
neutron-fwaas requires libnetfilter-log1 when fwaas_v2_log is enabled on l3 agent. As this package isn't easily available via rpm, this is only added for deb platforms. Partial-Bug: #2079775 Change-Id: I22d05d1a1c6ab92ed5507d6c90b8c2281abfc7af
1 parent 827fb07 commit b910b2c

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

docker/neutron/neutron-l3-agent/Dockerfile.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
1111
{% set neutron_l3_agent_packages = [
1212
'libreswan',
1313
'radvd',
14-
'dibbler-client'
14+
'dibbler-client',
1515
] %}
1616
{% elif base_package_type == 'deb' %}
1717
{% set neutron_l3_agent_packages = [
1818
'strongswan',
1919
'radvd',
20-
'dibbler-client'
20+
'dibbler-client',
21+
'libnetfilter-log1'
2122
] %}
2223
{% endif %}
2324

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
issues:
3+
- |
4+
libnetfilter_log, which is required in neutron-l3-agent when fwaas_v2_log
5+
is enabled, is not available in official rpm repos and enabling this
6+
feature on rpm platforms will prevent neutron-l3-agent from running.
7+
fixes:
8+
- |
9+
libnnetfilter_log has been added to deb platforms in order to support
10+
the fwaas_v2_log feature in neutron l3 agent.

0 commit comments

Comments
 (0)