You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="The minimum amount of memory to allocate to the postgres pods (in Mi)"
115
121
type=number
116
-
default=400
122
+
default=500
117
123
118
124
validation {
119
-
condition=var.pg_minimum_memory_mb>=400
120
-
error_message="Must provide at least 400MB of memory"
125
+
condition=var.pg_minimum_memory_mb>=500
126
+
error_message="Must provide at least 500MB of memory"
121
127
}
122
128
}
123
129
@@ -188,4 +194,22 @@ variable "wait" {
188
194
description="Wait for resources to be in a ready state before proceeding. Disabling this flag will allow upgrades to proceed faster but will disable automatic rollbacks. As a result, manual intervention may be required for deployment failures."
189
195
type=bool
190
196
default=true
197
+
}
198
+
199
+
variable"spot_nodes_enabled" {
200
+
description="Whether to allow pods to schedule on spot nodes"
201
+
type=bool
202
+
default=true
203
+
}
204
+
205
+
variable"burstable_nodes_enabled" {
206
+
description="Whether to allow pods to schedule on burstable nodes"
207
+
type=bool
208
+
default=true
209
+
}
210
+
211
+
variable"controller_nodes_enabled" {
212
+
description="Whether to allow pods to schedule on EKS Node Group nodes (controller nodes)"
0 commit comments