diff options
author | Dan Davison <ddavison@gitlab.com> | 2019-08-06 21:03:37 +0000 |
---|---|---|
committer | Dan Davison <ddavison@gitlab.com> | 2019-08-06 21:03:37 +0000 |
commit | f85e5c2614d1a9795f9ba3d816a1228470549033 (patch) | |
tree | 9a64d95607740427ef4bfb131a0b4900d3be0bdf /qa | |
parent | b91bc31a5c8a82488073e877f2fdbc5709d0f79c (diff) | |
download | gitlab-ce-f85e5c2614d1a9795f9ba3d816a1228470549033.tar.gz |
Default number of GCP nodes to 1
By defaulting to 3, there is unnecessary cost
involved
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa/runtime/env.rb | 2 |
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? |