Skip to content

Commit 5a17c37

Browse files
authored
Merge pull request #1396 from bl0m1/udp_commonnodeport
🐛 Allow UDP traffic over nodeports
2 parents 6a7f364 + 9ae3231 commit 5a17c37

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pkg/cloud/services/networking/securitygroups_rules.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,14 @@ func GetSGWorkerNodePort() []infrav1.SecurityGroupRule {
232232
PortRangeMax: 32767,
233233
Protocol: "tcp",
234234
},
235+
{
236+
Description: "Node Port Services",
237+
Direction: "ingress",
238+
EtherType: "IPv4",
239+
PortRangeMin: 30000,
240+
PortRangeMax: 32767,
241+
Protocol: "udp",
242+
},
235243
}
236244
}
237245

0 commit comments

Comments
 (0)