Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow all udp/icmp traffic along with tcp traffic within VPCs #529

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
amold1 marked this conversation as resolved.
Show resolved Hide resolved
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
Loading