Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1334 from cheungpat/fix-controller-flannel
Browse files Browse the repository at this point in the history
Fix flannel traffic among controllers
  • Loading branch information
mumoshu authored May 27, 2018
2 parents fe28d6f + 2136f7e commit cb6766d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions core/network/config/templates/stack-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,20 @@
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"SecurityGroupControllerIngressFromControllerToFlannel": {
"Properties": {
"FromPort": 8472,
"GroupId": {
"Ref": "SecurityGroupController"
},
"IpProtocol": "udp",
"SourceSecurityGroupId": {
"Ref": "SecurityGroupController"
},
"ToPort": 8472
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"SecurityGroupWorkerIngressFromWorkerToFlannel": {
"Properties": {
"FromPort": 8472,
Expand Down

0 comments on commit cb6766d

Please sign in to comment.