Allow unprivileged ports to access cluster
This is needed for ingress-nginx
This commit is contained in:
parent
3ad719a4e7
commit
812e828862
1 changed files with 9 additions and 0 deletions
|
@ -25,4 +25,13 @@ resource "linode_firewall" "the-ring" {
|
||||||
ipv4 = ["0.0.0.0/0"]
|
ipv4 = ["0.0.0.0/0"]
|
||||||
ipv6 = ["::/0"]
|
ipv6 = ["::/0"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inbound {
|
||||||
|
label = "allow-k8s-unprivileged"
|
||||||
|
action = "ACCEPT"
|
||||||
|
protocol = "TCP"
|
||||||
|
ports = "30000-32767"
|
||||||
|
ipv4 = ["0.0.0.0/0"]
|
||||||
|
ipv6 = ["::/0"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue