File tree 5 files changed +2
-39
lines changed
5 files changed +2
-39
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ resource "google_container_cluster" "current" {
74
74
}
75
75
76
76
dynamic "maintenance_exclusion" {
77
- for_each = var. maintenance_exclusion_start_time != null ? [1 ] : []
77
+ for_each = var. maintenance_exclusion_start_time != " " ? [1 ] : []
78
78
79
79
content {
80
80
start_time = var. maintenance_exclusion_start_time
Original file line number Diff line number Diff line change @@ -165,19 +165,6 @@ variable "network_config" {
165
165
create_pod_range = bool
166
166
pod_ipv4_cidr_block = string
167
167
})
168
- description = " Additional network configuration for the node pool."
169
- }
170
-
171
- variable "ephemeral_storage_local_ssd_config" {
172
- type = object ({
173
- local_ssd_count = number
174
- })
175
- description = " `ephemeral_storage_local_ssd_config` block, useful for node groups with local SSD. Defaults to `null`"
168
+ description = " Configure additional pod IP address range for the node pool. Defaults to `null`"
176
169
default = null
177
170
}
178
-
179
- variable "labels" {
180
- type = map (string )
181
- description = " Kubernetes labels to set on the nodes created by the node pool. Merged with Kubestack default labels."
182
- default = {}
183
- }
Original file line number Diff line number Diff line change @@ -46,8 +46,4 @@ locals {
46
46
network_config = local. cfg [" network_config" ]
47
47
48
48
instance_tags = local. cfg [" instance_tags" ]
49
-
50
- ephemeral_storage_local_ssd_config = local. cfg [" ephemeral_storage_local_ssd_config" ]
51
-
52
- guest_accelerator = local. cfg [" guest_accelerator" ]
53
49
}
Original file line number Diff line number Diff line change @@ -43,8 +43,4 @@ module "node_pool" {
43
43
guest_accelerator = local. guest_accelerator
44
44
45
45
network_config = local. network_config
46
-
47
- ephemeral_storage_local_ssd_config = local. ephemeral_storage_local_ssd_config
48
-
49
- guest_accelerator = local. guest_accelerator
50
46
}
Original file line number Diff line number Diff line change @@ -29,8 +29,6 @@ variable "configuration" {
29
29
30
30
labels = optional (map (string ))
31
31
32
- labels = optional (map (string ))
33
-
34
32
extra_oauth_scopes = optional (list (string ))
35
33
36
34
node_workload_metadata_config = optional (string )
@@ -58,20 +56,6 @@ variable "configuration" {
58
56
}))
59
57
60
58
instance_tags = optional (list (string ))
61
-
62
- ephemeral_storage_local_ssd_config = optional (object ({
63
- local_ssd_count = number
64
- }))
65
-
66
- guest_accelerator = optional (object ({
67
- type = string
68
- count = number
69
- gpu_partition_size = optional (string )
70
- gpu_sharing_config = optional (object ({
71
- gpu_sharing_strategy = optional (string )
72
- max_shared_clients_per_gpu = optional (number )
73
- }))
74
- }))
75
59
}))
76
60
77
61
description = " Map with per workspace cluster configuration."
You can’t perform that action at this time.
0 commit comments