summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Davison <ddavison@gitlab.com>2019-08-06 21:03:37 +0000
committerDan Davison <ddavison@gitlab.com>2019-08-06 21:03:37 +0000
commitf85e5c2614d1a9795f9ba3d816a1228470549033 (patch)
tree9a64d95607740427ef4bfb131a0b4900d3be0bdf
parentb91bc31a5c8a82488073e877f2fdbc5709d0f79c (diff)
downloadgitlab-ce-f85e5c2614d1a9795f9ba3d816a1228470549033.tar.gz
Default number of GCP nodes to 1
By defaulting to 3, there is unnecessary cost involved
-rw-r--r--qa/qa/runtime/env.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/runtime/env.rb b/qa/qa/runtime/env.rb
index 4e5610d69b7..b184eeb1701 100644
--- a/qa/qa/runtime/env.rb
+++ b/qa/qa/runtime/env.rb
@@ -182,7 +182,7 @@ module QA
end
def gcloud_num_nodes
- ENV.fetch('GCLOUD_NUM_NODES', 3)
+ ENV.fetch('GCLOUD_NUM_NODES', 1)
end
def has_gcloud_credentials?