Skip to content
Snippets Groups Projects
Commit db4e12e9 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "baremetal: Install iptables for Docker if enabled"

parents b0439c67 bc1d02d8
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@ debian_pkg_install:
- "{% if virtualenv is not none %}python3-virtualenv{% endif %}"
- "{% if enable_host_ntp | bool %}ntp{% endif %}"
- "{% if enable_multipathd|bool %}sg3-utils-udev{% endif %}"
- "{% if not docker_disable_default_iptables_rules | bool %}iptables{% endif %}"
redhat_pkg_install:
- "{{ docker_yum_package }}"
......@@ -53,6 +54,7 @@ redhat_pkg_install:
- "{% if virtualenv is not none %}python3-virtualenv{% endif %}"
- "{% if enable_host_ntp | bool %}ntp{% endif %}"
- sudo
- "{% if not docker_disable_default_iptables_rules | bool %}iptables{% endif %}"
ubuntu_pkg_removals:
- lxd
......
---
fixes:
- |
Fixes an issue where Docker may fail to start if ``iptables`` is not
installed. `LP#1899060
<https://bugs.launchpad.net/kolla-ansible/+bug/1899060>`__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment