From cb6c207a9dc77a95a0b5a9fc3b625c38bcb9ba86 Mon Sep 17 00:00:00 2001 From: Aram Karapetyan Date: Tue, 28 Nov 2023 10:58:15 +0400 Subject: [PATCH] fix(DMVP-3107): Add Adot metric for node monitor --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9fbed5..8e5bbc3 100644 --- a/README.md +++ b/README.md @@ -243,7 +243,7 @@ worker_groups = { | [autoscaler\_image\_patch](#input\_autoscaler\_image\_patch) | The patch number of autoscaler image | `number` | `0` | no | | [autoscaler\_limits](#input\_autoscaler\_limits) | n/a |
object({
cpu = string
memory = string
})
|
{
"cpu": "100m",
"memory": "600Mi"
}
| no | | [autoscaler\_requests](#input\_autoscaler\_requests) | n/a |
object({
cpu = string
memory = string
})
|
{
"cpu": "100m",
"memory": "600Mi"
}
| no | -| [autoscaling](#input\_autoscaling) | Weather enable autoscaling or not in EKS | `bool` | `false` | no | +| [autoscaling](#input\_autoscaling) | Weather enable autoscaling or not in EKS | `bool` | `true` | no | | [bindings](#input\_bindings) | Variable which describes group and role binding |
list(object({
group = string
namespace = string
roles = list(string)

}))
| `[]` | no | | [cluster\_enabled\_log\_types](#input\_cluster\_enabled\_log\_types) | A list of the desired control plane logs to enable. For more information, see Amazon EKS Control Plane Logging documentation (https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html) | `list(string)` | `[]` | no | | [cluster\_endpoint\_public\_access](#input\_cluster\_endpoint\_public\_access) | n/a | `bool` | `true` | no | diff --git a/variables.tf b/variables.tf index 2635149..3e10374 100644 --- a/variables.tf +++ b/variables.tf @@ -354,7 +354,7 @@ variable "efs_id" { variable "autoscaling" { description = "Weather enable autoscaling or not in EKS" type = bool - default = false + default = true } variable "autoscaler_image_patch" {