Skip to content

Commit fff44ae

Browse files
fix: change keda default replicas back to 1
1 parent 1389a05 commit fff44ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/keda/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ variable "repository" {
1313
variable "replicas" {
1414
description = "Number of replicas for Keda operator"
1515
type = number
16-
default = 2
16+
default = 1
1717
}
1818

1919
variable "webhooks_replicas" {
2020
description = "Number of replicas for Keda admission webhooks"
2121
type = number
22-
default = 2
22+
default = 1
2323
}
2424

2525
variable "metrics_server_replicas" {

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ variable "keda" {
105105
enabled = optional(bool, false)
106106
repository = optional(string, "https://kedacore.github.io/charts")
107107
namespace = optional(string, "cluster-apps")
108-
replicas = optional(number, 2)
109-
webhooks_replicas = optional(number, 2)
108+
replicas = optional(number, 1)
109+
webhooks_replicas = optional(number, 1)
110110
metrics_server_replicas = optional(number, 1)
111111
log_level = optional(string, "info")
112112
metrics_server = optional(bool, true)

0 commit comments

Comments
 (0)