Commit 47f44f58 authored by George Kraft's avatar George Kraft

Fix hook failure in kubernetes-worker charm due to iptables conflict

parent 7efc6c83
...@@ -854,7 +854,7 @@ def fix_iptables_for_docker_1_13(): ...@@ -854,7 +854,7 @@ def fix_iptables_for_docker_1_13():
https://github.com/kubernetes/kubernetes/issues/40182 https://github.com/kubernetes/kubernetes/issues/40182
https://github.com/kubernetes/kubernetes/issues/39823 https://github.com/kubernetes/kubernetes/issues/39823
""" """
cmd = ['iptables', '-P', 'FORWARD', 'ACCEPT'] cmd = ['iptables', '-w', '300', '-P', 'FORWARD', 'ACCEPT']
check_call(cmd) check_call(cmd)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment