Skip to content

Commit

Permalink
allow all udp/icmp traffic along with tcp traffic within VPCs; add po…
Browse files Browse the repository at this point in the history
…rts for NB and konnectivity to firewall (#529)
  • Loading branch information
amold1 authored Oct 1, 2024
1 parent acc1084 commit f828b25
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions templates/infra/linodeFirewall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,43 @@ spec:
inboundPolicy: DROP
inboundRules:
- action: ACCEPT
label: intra-cluster
label: intra-cluster-tcp
ports: "1-65535"
protocol: "TCP"
addresses:
ipv4:
- "10.0.0.0/8"
description: accept all tcp traffic within the vpc
- action: ACCEPT
label: intra-cluster-udp
ports: "1-65535"
protocol: "UDP"
addresses:
ipv4:
- "10.0.0.0/8"
description: accept all udp traffic within the vpc
- action: ACCEPT
label: intra-cluster-icmp
protocol: "ICMP"
addresses:
ipv4:
- "10.0.0.0/8"
description: accept all icmp traffic within the vpc
- action: ACCEPT
addresses:
ipv4:
- 0.0.0.0/0
ipv6:
- ::/0
ports: "6443"
ports: 6443, 8132
protocol: TCP
label: inbound-api-server
description: accept all api server and Konnectivity related traffic
- action: ACCEPT
addresses:
ipv4:
- 192.168.255.0/24
ports: 30000-30100
protocol: TCP
label: accept-NodeBalancer
description: accept traffic from the entire NodeBalancer CIDR to the NodePort service range

0 comments on commit f828b25

Please sign in to comment.