summaryrefslogtreecommitdiff
path: root/spec/db
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2016-10-02 15:30:44 -0700
committerDJ Mountney <david@twkie.net>2016-12-01 17:21:21 -0800
commitfb5f7733f14b701f6e22a54bc8b4c08330bc036f (patch)
tree0c6986356b87ceb54226b039c9b72d3f65ff8c5b /spec/db
parent994530270899ae904fbf5a77b602990b8cd79c67 (diff)
downloadgitlab-ce-fb5f7733f14b701f6e22a54bc8b4c08330bc036f.tar.gz
Allow users to seed the initial runner registration token using an environment variable
This is useful for when runner is bundled with gitlab, like in a kubernetes stack, and we want the runner to be able to register with gitlab as soon as they both come up.
Diffstat (limited to 'spec/db')
-rw-r--r--spec/db/production/settings.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/db/production/settings.rb b/spec/db/production/settings.rb
new file mode 100644
index 00000000000..a7c5283df94
--- /dev/null
+++ b/spec/db/production/settings.rb
@@ -0,0 +1,16 @@
+require 'spec_helper'
+require 'rainbow/ext/string'
+
+describe 'seed production settings', lib: true do
+ context 'GITLAB_SHARED_RUNNERS_REGISTRATION_TOKEN is set in the environment' do
+ before do
+ allow(ENV).to receive(:[]).and_call_original
+ allow(ENV).to receive(:[]).with('GITLAB_SHARED_RUNNERS_REGISTRATION_TOKEN').and_return('013456789')
+ end
+
+ it 'writes the token to the database' do
+ load(File.join(__dir__, '../../../db/fixtures/production/010_settings.rb'))
+ expect(ApplicationSetting.current.runners_registration_token).to eq('013456789')
+ end
+ end
+end