Skip to content

Commit

Permalink
Added taks to enable ipchains FORWARD policy to ACCEPT
Browse files Browse the repository at this point in the history
  • Loading branch information
magic7s committed Feb 12, 2018
1 parent c1ded75 commit b97e6f3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion roles/docker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@
service:
name: docker
state: restarted
enabled: yes
enabled: yes

# This is needed based on Docker 1.13 update. Kubernetes and/or CNI could also fix this.
- name: Reenable ipchains FORWARD
iptables:
chain: FORWARD
policy: ACCEPT

1 comment on commit b97e6f3

@magic7s
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional information here kubernetes/kubernetes#40182 (comment)

Please sign in to comment.