mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-12 05:21:33 +01:00
feat: Add additional port for metrics-server to recommended rules (#2353)
This commit is contained in:
@@ -115,6 +115,16 @@ locals {
|
|||||||
type = "ingress"
|
type = "ingress"
|
||||||
self = true
|
self = true
|
||||||
}
|
}
|
||||||
|
# metrics-server
|
||||||
|
ingress_cluster_8443_webhook = {
|
||||||
|
description = "Cluster API to node 4443/tcp webhook"
|
||||||
|
protocol = "tcp"
|
||||||
|
from_port = 4443
|
||||||
|
to_port = 4443
|
||||||
|
type = "ingress"
|
||||||
|
source_cluster_security_group = true
|
||||||
|
}
|
||||||
|
# Karpenter
|
||||||
ingress_cluster_8443_webhook = {
|
ingress_cluster_8443_webhook = {
|
||||||
description = "Cluster API to node 8443/tcp webhook"
|
description = "Cluster API to node 8443/tcp webhook"
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
@@ -123,6 +133,7 @@ locals {
|
|||||||
type = "ingress"
|
type = "ingress"
|
||||||
source_cluster_security_group = true
|
source_cluster_security_group = true
|
||||||
}
|
}
|
||||||
|
# ALB controller, NGINX
|
||||||
ingress_cluster_9443_webhook = {
|
ingress_cluster_9443_webhook = {
|
||||||
description = "Cluster API to node 9443/tcp webhook"
|
description = "Cluster API to node 9443/tcp webhook"
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|||||||
Reference in New Issue
Block a user