File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
test/integration/node_pool/controls Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ module "gke" {
38
38
node_pools = [
39
39
{
40
40
name = " pool-01"
41
- min_count = 4
41
+ min_count = 1
42
42
service_account = " ${ var . compute_engine_service_account } "
43
43
},
44
44
{
45
45
name = " pool-02"
46
46
machine_type = " n1-standard-2"
47
- min_count = 2
48
- max_count = 3
47
+ min_count = 1
48
+ max_count = 2
49
49
disk_size_gb = 30
50
50
disk_type = " pd-standard"
51
51
image_type = " COS"
Original file line number Diff line number Diff line change 76
76
including (
77
77
"name" => "pool-01" ,
78
78
"autoscaling" => including (
79
- "minNodeCount" => 4 ,
79
+ "minNodeCount" => 1 ,
80
80
) ,
81
81
)
82
82
)
173
173
including (
174
174
"name" => "pool-02" ,
175
175
"autoscaling" => including (
176
- "minNodeCount" => 2 ,
176
+ "minNodeCount" => 1 ,
177
177
) ,
178
178
)
179
179
)
184
184
including (
185
185
"name" => "pool-02" ,
186
186
"autoscaling" => including (
187
- "maxNodeCount" => 3 ,
187
+ "maxNodeCount" => 2 ,
188
188
) ,
189
189
)
190
190
)
You can’t perform that action at this time.
0 commit comments