mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-11 21:11:32 +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"
|
||||
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 = {
|
||||
description = "Cluster API to node 8443/tcp webhook"
|
||||
protocol = "tcp"
|
||||
@@ -123,6 +133,7 @@ locals {
|
||||
type = "ingress"
|
||||
source_cluster_security_group = true
|
||||
}
|
||||
# ALB controller, NGINX
|
||||
ingress_cluster_9443_webhook = {
|
||||
description = "Cluster API to node 9443/tcp webhook"
|
||||
protocol = "tcp"
|
||||
|
||||
Reference in New Issue
Block a user