Skip to content
Snippets Groups Projects
Commit a06ad1a6 authored by DJ Mountney's avatar DJ Mountney
Browse files

Merge branch 'pass-version-env-vars-to-trigger' into 'master'

Pass `*_VERSION` env variables to omnibus-gitlab-mirror trigger

See merge request gitlab-org/omnibus-gitlab!5062
parents 8e04165e dd484698
2 merge requests!39Bumped oldstable branch to Heptapod 0.21,!31GitLab 13.10
......@@ -27,13 +27,11 @@
## I want to use specific branches or versions of various GitLab components in my build
Versions of the main GitLab components like GitLab-Rails, Gitaly, GitLab Pages,
GitLab Shell, GitLab Workhorse, GitLab Elasticsearch Indexer is controlled by
various `*_VERSION` files in `omnibus-gitlab` repository. You can modify these
files to point to your intended targets and the builds will use them. All of
those files accept a branch name, a tag name, or a commit SHA as their content.
They can also be provided via environment variables. Check the table below for
details:
Versions of the primary GitLab components like GitLab-Rails, Gitaly, GitLab
Pages, GitLab Shell, GitLab Workhorse, GitLab Elasticsearch Indexer are
controlled by various `*_VERSION` files in `omnibus-gitlab` repository and
`*_VERSION` environment variables present during the build. Check the table
below for details:
| File name | Environment Variable | Description |
| ------------------------------------ | ------------------------------------ | ----------- |
......@@ -50,6 +48,49 @@
while other environment variables, if not specified, will be populated from
their corresponding files and passed on to the triggered pipeline.
NOTE:
Environment variables take precedence over `*_VERSION` files.
### Specifying a component version temporarily
Temporarily specify a component version using any of the following methods:
1. Edit the `*_VERSION` file, commit and push to start a pipeline, but revert
this change before the MR is marked ready for merge. It is recommended to
open an unresolved discussion on this diff in the MR so that you remember to
revert it.
1. Set the environment variable via `.gitlab-ci.yml` file, commit and push to
start a pipeline, but revert this change before the MR is marked ready for
merge. It is recommended to open an unresolved discussion on this diff in the
MR so that you remember to revert it.
1. Pass the environment variable as a [Git push option](https://docs.gitlab.com/ee/user/project/push_options.html#push-options-for-gitlab-cicd).
```shell
git push <REMOTE> -o ci.variable="<ENV_VAR>=<VALUE>"
# Passing multiple variables
git push <REMOTE> -o ci.variable="<ENV_VAR_1>=<VALUE_1>" -o ci.variable="<ENV_VAR_2>=<VALUE_2>"
```
**`Note`**: This works only if you have some changes to push. If remote is
already updated with your local branch, no new pipeline will be created.
1. Manually run the pipeline from UI while specifying the environment variables.
Environment variables are passed to the triggered downstream pipeline in the
[QA mirror](https://gitlab.com/gitlab-org/build/omnibus-gitlab-mirror) so that
they are used during builds.
Generally, environment variables are preferred over changing the `*_VERSION`
files to avoid the extra step of reverting changes. The `*_VERSION` files are
most efficient when repeated package builds of `omnibus-gitlab` are required,
but the only changes happening are in GitLab components. In this case, once a
pipeline is run after changing the `*_VERSION` files, it can be retried to build
new packages pulling in changes from upstream component feature branch instead
of manually running new pipelines.
## I want to use a specific mirror or fork of various GitLab components in my build
The repository sources for most software that Omnibus Builds can be found in
......
require_relative 'trigger'
require_relative 'info'
require_relative "../util.rb"
require_relative "../util"
require_relative "../version"
module Build
class OmnibusTrigger
......@@ -27,7 +28,17 @@
"variables[TOP_UPSTREAM_SOURCE_SHA]" => Gitlab::Util.get_env('TOP_UPSTREAM_SOURCE_SHA'),
"variables[TOP_UPSTREAM_SOURCE_REF]" => Gitlab::Util.get_env('TOP_UPSTREAM_SOURCE_REF'),
"variables[QA_BRANCH]" => Gitlab::Util.get_env('QA_BRANCH') || 'master'
}
}.merge(version_params)
end
def self.version_params
params = {}
Gitlab::Version::COMPONENTS_ENV_VARS.values.uniq.each do |version|
value = Gitlab::Util.get_env(version)
params["variables[#{version}]"] = value if value
end
params
end
def self.get_access_token
......
......@@ -9,6 +9,28 @@
ALTERNATIVE_SOURCE = 'alternative'.freeze
SECURITY_SOURCE = 'security'.freeze
COMPONENTS_ENV_VARS = {
'gitlab-rails' => 'GITLAB_VERSION',
'gitlab-rails-ee' => 'GITLAB_VERSION',
'gitlab-shell' => 'GITLAB_SHELL_VERSION',
'gitlab-workhorse' => 'GITLAB_WORKHORSE_VERSION',
'gitlab-pages' => 'GITLAB_PAGES_VERSION',
'gitaly' => 'GITALY_SERVER_VERSION',
'gitlab-elasticsearch-indexer' => 'GITLAB_ELASTICSEARCH_INDEXER_VERSION',
'gitlab-kas' => 'GITLAB_KAS_VERSION',
}.freeze
COMPONENTS_FILES = {
"gitlab-rails" => "VERSION",
"gitlab-rails-ee" => "VERSION",
"gitlab-shell" => "GITLAB_SHELL_VERSION",
"gitlab-workhorse" => "GITLAB_WORKHORSE_VERSION",
"gitlab-pages" => "GITLAB_PAGES_VERSION",
"gitaly" => "GITALY_SERVER_VERSION",
"gitlab-elasticsearch-indexer" => "GITLAB_ELASTICSEARCH_INDEXER_VERSION",
"gitlab-kas" => "GITLAB_KAS_VERSION"
}.freeze
# Return which remote sources channel we are using
#
# Channels can be selected based on ENVIRONMENTAL variables
......@@ -54,22 +76,7 @@
end
def read_version_from_env
case @software
when "gitlab-rails", "gitlab-rails-ee"
Gitlab::Util.get_env("GITLAB_VERSION")
when "gitlab-shell"
Gitlab::Util.get_env("GITLAB_SHELL_VERSION")
when "gitlab-workhorse"
Gitlab::Util.get_env("GITLAB_WORKHORSE_VERSION")
when "gitlab-pages"
Gitlab::Util.get_env("GITLAB_PAGES_VERSION")
when "gitaly"
Gitlab::Util.get_env("GITALY_SERVER_VERSION")
when "gitlab-elasticsearch-indexer"
Gitlab::Util.get_env("GITLAB_ELASTICSEARCH_INDEXER_VERSION")
when "gitlab-kas"
Gitlab::Util.get_env("GITLAB_KAS_VERSION")
end
Gitlab::Util.get_env(COMPONENTS_ENV_VARS[@software]) if COMPONENTS_ENV_VARS.include?(@software)
end
def read_version_from_file
......@@ -73,7 +80,7 @@
end
def read_version_from_file
path_to_version_file = components_files[@software]
path_to_version_file = COMPONENTS_FILES[@software]
if path_to_version_file
filepath = File.expand_path(path_to_version_file, @project_root)
File.read(filepath).chomp
......@@ -85,19 +92,6 @@
@read_version = ""
end
def components_files
{
"gitlab-rails" => "VERSION",
"gitlab-rails-ee" => "VERSION",
"gitlab-shell" => "GITLAB_SHELL_VERSION",
"gitlab-workhorse" => "GITLAB_WORKHORSE_VERSION",
"gitlab-pages" => "GITLAB_PAGES_VERSION",
"gitaly" => "GITALY_SERVER_VERSION",
"gitlab-elasticsearch-indexer" => "GITLAB_ELASTICSEARCH_INDEXER_VERSION",
"gitlab-kas" => "GITLAB_KAS_VERSION"
}
end
def print(prepend_version = true)
if @read_version.include?('.pre') || @read_version == "master"
"master"
......@@ -109,7 +103,7 @@
# 2. Not a valid version string following SemVer
# If it satisfy both, it is probably a branch name or a SHA
# commit of one of our own component so it doesn't need `v` prepended
if components_files.key?(@software)
if COMPONENTS_FILES.key?(@software)
return @read_version unless /^\d+\.\d+\.\d+(-rc\d+)?(-ee)?$/.match?(@read_version)
end
v = "v" if prepend_version
......
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