File tree 4 files changed +48
-2
lines changed
safer-cluster-update-variant
4 files changed +48
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,9 @@ module "gke" {
93
93
node_pools_taints = var. node_pools_taints
94
94
node_pools_tags = var. node_pools_tags
95
95
96
- node_pools_oauth_scopes = var. node_pools_oauth_scopes
96
+ node_pools_oauth_scopes = var. node_pools_oauth_scopes
97
+ node_pools_linux_node_configs_sysctls = var. node_pools_linux_node_configs_sysctls
98
+ node_pools_cgroup_mode = var. node_pools_cgroup_mode
97
99
98
100
cluster_autoscaling = var. cluster_autoscaling
99
101
Original file line number Diff line number Diff line change @@ -224,6 +224,27 @@ variable "node_pools_oauth_scopes" {
224
224
}
225
225
}
226
226
227
+ variable "node_pools_linux_node_configs_sysctls" {
228
+ type = map (map (string ))
229
+ description = " Map of maps containing linux node config sysctls by node-pool name"
230
+
231
+ # Default is being set in variables_defaults.tf
232
+ default = {
233
+ all = {}
234
+ default-node-pool = {}
235
+ }
236
+ }
237
+ variable "node_pools_cgroup_mode" {
238
+ type = map (string )
239
+ description = " Map of strings containing cgroup node config by node-pool name"
240
+
241
+ # Default is being set in variables_defaults.tf
242
+ default = {
243
+ all = " "
244
+ default-node-pool = " "
245
+ }
246
+ }
247
+
227
248
variable "cluster_autoscaling" {
228
249
type = object ({
229
250
enabled = bool
Original file line number Diff line number Diff line change @@ -93,7 +93,9 @@ module "gke" {
93
93
node_pools_taints = var. node_pools_taints
94
94
node_pools_tags = var. node_pools_tags
95
95
96
- node_pools_oauth_scopes = var. node_pools_oauth_scopes
96
+ node_pools_oauth_scopes = var. node_pools_oauth_scopes
97
+ node_pools_linux_node_configs_sysctls = var. node_pools_linux_node_configs_sysctls
98
+ node_pools_cgroup_mode = var. node_pools_cgroup_mode
97
99
98
100
cluster_autoscaling = var. cluster_autoscaling
99
101
Original file line number Diff line number Diff line change @@ -224,6 +224,27 @@ variable "node_pools_oauth_scopes" {
224
224
}
225
225
}
226
226
227
+ variable "node_pools_linux_node_configs_sysctls" {
228
+ type = map (map (string ))
229
+ description = " Map of maps containing linux node config sysctls by node-pool name"
230
+
231
+ # Default is being set in variables_defaults.tf
232
+ default = {
233
+ all = {}
234
+ default-node-pool = {}
235
+ }
236
+ }
237
+ variable "node_pools_cgroup_mode" {
238
+ type = map (string )
239
+ description = " Map of strings containing cgroup node config by node-pool name"
240
+
241
+ # Default is being set in variables_defaults.tf
242
+ default = {
243
+ all = " "
244
+ default-node-pool = " "
245
+ }
246
+ }
247
+
227
248
variable "cluster_autoscaling" {
228
249
type = object ({
229
250
enabled = bool
You can’t perform that action at this time.
0 commit comments