Skip to content
Snippets Groups Projects
Commit 61f891b9 authored by Balasankar 'Balu' C's avatar Balasankar 'Balu' C
Browse files

Split Deploy related information to own class

Move the following methods:
* `Build::Info.deploy_env_key` => `Build::Info::Deploy.environment_key`
* `Build::Info.deploy_env`     => `Build::Info::Deploy.environment`

Related https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8063



Signed-off-by: default avatarBalasankar "Balu" C <balasankar@gitlab.com>
parent 0ea6a9e0
No related branches found
No related tags found
3 merge requests!114heptapod#1394: making 1.0 the oldstable,!110heptapod#1352: merged heptapod branch into heptapod-stable,!108GitLab 16.6: merged first commit of upstream stable branch
......@@ -8,12 +8,6 @@
module Build
class Info
DEPLOYER_OS_MAPPING = {
'AUTO_DEPLOY_ENVIRONMENT' => 'ubuntu-xenial',
'PATCH_DEPLOY_ENVIRONMENT' => 'ubuntu-bionic',
'RELEASE_DEPLOY_ENVIRONMENT' => 'ubuntu-focal',
}.freeze
class << self
def gcp_release_bucket
# All tagged builds are pushed to the release bucket
......@@ -34,30 +28,6 @@
'info'
end
end
def deploy_env_key
if Build::Check.is_auto_deploy_tag?
'AUTO_DEPLOY_ENVIRONMENT'
elsif Build::Check.is_rc_tag?
'PATCH_DEPLOY_ENVIRONMENT'
elsif Build::Check.is_latest_stable_tag?
'RELEASE_DEPLOY_ENVIRONMENT'
end
end
def deploy_env
key = deploy_env_key
return nil if key.nil?
env = Gitlab::Util.get_env(key)
abort "Unable to determine which environment to deploy too, #{key} is empty" unless env
puts "Ready to send trigger for environment(s): #{env}"
env
end
end
end
end
module Build
class Info
class Deploy
class << self
OS_MAPPING = {
'AUTO_DEPLOY_ENVIRONMENT' => 'ubuntu-xenial',
'PATCH_DEPLOY_ENVIRONMENT' => 'ubuntu-bionic',
'RELEASE_DEPLOY_ENVIRONMENT' => 'ubuntu-focal',
}.freeze
def environment_key
if Build::Check.is_auto_deploy_tag?
'AUTO_DEPLOY_ENVIRONMENT'
elsif Build::Check.is_rc_tag?
'PATCH_DEPLOY_ENVIRONMENT'
elsif Build::Check.is_latest_stable_tag?
'RELEASE_DEPLOY_ENVIRONMENT'
end
end
def environment
key = environment_key
return nil if key.nil?
env = Gitlab::Util.get_env(key)
abort "Unable to determine which environment to deploy too, #{key} is empty" unless env
puts "Ready to send trigger for environment(s): #{env}"
env
end
end
end
end
end
require_relative '../build/info/deploy'
require_relative '../deployer_helper.rb'
require_relative "../util.rb"
......@@ -11,6 +12,6 @@
exit
end
deploy_env = Build::Info.deploy_env
deploy_env = Build::Info::Deploy.environment
operating_systems = Build::Info::Package.file_list.map { |path| path.split("/")[1] }.uniq
......@@ -15,6 +16,6 @@
operating_systems = Build::Info::Package.file_list.map { |path| path.split("/")[1] }.uniq
unless operating_systems.include?(Build::Info::DEPLOYER_OS_MAPPING[Build::Info.deploy_env_key])
unless operating_systems.include?(Build::Info::Deploy::OS_MAPPING[Build::Info::Deploy.environment_key])
puts "Deployment to #{deploy_env} not to be triggered from this build (#{operating_systems.join(',')})."
exit
end
......
require 'spec_helper'
require 'gitlab/build/info/deploy'
RSpec.describe Build::Info::Deploy do
before do
stub_default_package_version
stub_env_var('GITLAB_ALTERNATIVE_REPO', nil)
stub_env_var('ALTERNATIVE_PRIVATE_TOKEN', nil)
end
describe '.environment' do
before do
allow(ENV).to receive(:[]).with('AUTO_DEPLOY_ENVIRONMENT').and_return('ad')
allow(ENV).to receive(:[]).with('PATCH_DEPLOY_ENVIRONMENT').and_return('patch')
allow(ENV).to receive(:[]).with('RELEASE_DEPLOY_ENVIRONMENT').and_return('r')
end
context 'on auto-deploy tag' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(true)
end
it 'returns the auto-deploy environment' do
expect(described_class.environment).to eq('ad')
end
end
context 'on RC tag' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(false)
allow(Build::Check).to receive(:is_rc_tag?).and_return(true)
end
it 'returns the patch-deploy environment' do
expect(described_class.environment).to eq('patch')
end
end
context 'on latest tag' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(false)
allow(Build::Check).to receive(:is_rc_tag?).and_return(false)
allow(Build::Check).to receive(:is_latest_stable_tag?).and_return(true)
end
it 'returns the release-deploy environment' do
expect(described_class.environment).to eq('r')
end
end
context 'when unable to determine the desired env' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(false)
allow(Build::Check).to receive(:is_rc_tag?).and_return(false)
allow(Build::Check).to receive(:is_latest_stable_tag?).and_return(false)
end
it 'it returns nil' do
expect(described_class.environment).to eq(nil)
end
end
end
end
......@@ -9,55 +9,6 @@
stub_env_var('ALTERNATIVE_PRIVATE_TOKEN', nil)
end
describe '.deploy_env' do
before do
allow(ENV).to receive(:[]).with('AUTO_DEPLOY_ENVIRONMENT').and_return('ad')
allow(ENV).to receive(:[]).with('PATCH_DEPLOY_ENVIRONMENT').and_return('patch')
allow(ENV).to receive(:[]).with('RELEASE_DEPLOY_ENVIRONMENT').and_return('r')
end
context 'on auto-deploy tag' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(true)
end
it 'returns the auto-deploy environment' do
expect(described_class.deploy_env).to eq('ad')
end
end
context 'on RC tag' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(false)
allow(Build::Check).to receive(:is_rc_tag?).and_return(true)
end
it 'returns the auto-deploy environment' do
expect(described_class.deploy_env).to eq('patch')
end
end
context 'on latest tag' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(false)
allow(Build::Check).to receive(:is_rc_tag?).and_return(false)
allow(Build::Check).to receive(:is_latest_stable_tag?).and_return(true)
end
it 'returns the auto-deploy environment' do
expect(described_class.deploy_env).to eq('r')
end
end
context 'when unable to determine the desired env' do
before do
allow(Build::Check).to receive(:is_auto_deploy_tag?).and_return(false)
allow(Build::Check).to receive(:is_rc_tag?).and_return(false)
allow(Build::Check).to receive(:is_latest_stable_tag?).and_return(false)
end
it 'it returns nil' do
expect(described_class.deploy_env).to eq(nil)
end
end
end
describe '.gcp_release_bucket' do
it 'returns the release bucket when on a tag' do
allow(Build::Check).to receive(:on_tag?).and_return(true)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment