From 548f3685b1424062f138542aba15b323353bc358 Mon Sep 17 00:00:00 2001 From: Riley Karson Date: Mon, 17 Sep 2018 10:03:43 -0700 Subject: [PATCH] Reduce rig datasource test target size to 1. (#2064) So, every time this test fails we are leaving behind 10 CPUs. This is a big cause of our quota problem because we are at 70!! right now. We still need to fix the test but let's also reduce this count to 1 so we leave 1/10th of the zombie instances. Changing from a new to legacy health check also did not work so I have no clue what the issue is here. Observing the instances, they are shown as being stuck in "Instance is being verified" state for up to days. --- google/data_source_google_compute_region_instance_group_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/data_source_google_compute_region_instance_group_test.go b/google/data_source_google_compute_region_instance_group_test.go index 289a7d59..e7282467 100644 --- a/google/data_source_google_compute_region_instance_group_test.go +++ b/google/data_source_google_compute_region_instance_group_test.go @@ -68,7 +68,7 @@ resource "google_compute_region_instance_group_manager" "foo" { instance_template = "${google_compute_instance_template.foo.self_link}" region = "us-central1" target_pools = ["${google_compute_target_pool.foo.self_link}"] - target_size = 10 + target_size = 1 named_port { name = "web"