Allow unprivileged ports to access cluster

This is needed for ingress-nginx
This commit is contained in:
Jake Howard 2022-03-07 20:32:14 +00:00
parent 3ad719a4e7
commit 812e828862
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 9 additions and 0 deletions

View File

@ -25,4 +25,13 @@ resource "linode_firewall" "the-ring" {
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
inbound {
label = "allow-k8s-unprivileged"
action = "ACCEPT"
protocol = "TCP"
ports = "30000-32767"
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
}