Skip to content

Commit 9ae3231

Browse files
committed
Allow UDP traffic to nodeports
1 parent f79ec11 commit 9ae3231

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)