2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
module Ci
|
2021-08-03 02:08:50 -04:00
|
|
|
class Runner < Ci::ApplicationRecord
|
2017-11-24 05:45:19 -05:00
|
|
|
include Gitlab::SQL::Pattern
|
2018-02-05 11:07:49 -05:00
|
|
|
include RedisCacheable
|
2018-02-20 19:09:59 -05:00
|
|
|
include ChronicDurationAttribute
|
2018-09-11 11:31:34 -04:00
|
|
|
include FromUnion
|
2018-11-20 10:30:39 -05:00
|
|
|
include TokenAuthenticatable
|
2019-12-01 01:06:11 -05:00
|
|
|
include IgnorableColumns
|
2021-03-02 10:10:57 -05:00
|
|
|
include FeatureGate
|
2021-05-19 08:10:33 -04:00
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
include TaggableQueries
|
2021-08-10 11:10:03 -04:00
|
|
|
include Presentable
|
2018-11-20 10:30:39 -05:00
|
|
|
|
2022-02-07 07:12:27 -05:00
|
|
|
add_authentication_token_field :token, encrypted: :optional, expires_at: :compute_token_expiration, expiration_enforced?: :token_expiration_enforced?
|
2015-10-12 15:12:31 -04:00
|
|
|
|
2018-06-11 07:37:47 -04:00
|
|
|
enum access_level: {
|
|
|
|
not_protected: 0,
|
|
|
|
ref_protected: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
enum runner_type: {
|
|
|
|
instance_type: 1,
|
|
|
|
group_type: 2,
|
|
|
|
project_type: 3
|
|
|
|
}
|
|
|
|
|
2021-12-13 10:12:59 -05:00
|
|
|
enum executor_type: {
|
|
|
|
unknown: 0,
|
|
|
|
custom: 1,
|
|
|
|
shell: 2,
|
|
|
|
docker: 3,
|
|
|
|
docker_windows: 4,
|
|
|
|
docker_ssh: 5,
|
|
|
|
ssh: 6,
|
|
|
|
parallels: 7,
|
|
|
|
virtualbox: 8,
|
|
|
|
docker_machine: 9,
|
|
|
|
docker_ssh_machine: 10,
|
|
|
|
kubernetes: 11
|
|
|
|
}, _suffix: true
|
|
|
|
|
2020-05-27 11:08:11 -04:00
|
|
|
# This `ONLINE_CONTACT_TIMEOUT` needs to be larger than
|
|
|
|
# `RUNNER_QUEUE_EXPIRY_TIME+UPDATE_CONTACT_COLUMN_EVERY`
|
|
|
|
#
|
|
|
|
ONLINE_CONTACT_TIMEOUT = 2.hours
|
|
|
|
|
|
|
|
# The `RUNNER_QUEUE_EXPIRY_TIME` indicates the longest interval that
|
|
|
|
# Runner request needs to be refreshed by Rails instead of being handled
|
|
|
|
# by Workhorse
|
2019-08-22 07:08:46 -04:00
|
|
|
RUNNER_QUEUE_EXPIRY_TIME = 1.hour
|
|
|
|
|
2020-05-27 11:08:11 -04:00
|
|
|
# The `UPDATE_CONTACT_COLUMN_EVERY` defines how often the Runner DB entry can be updated
|
2019-08-22 07:08:46 -04:00
|
|
|
UPDATE_CONTACT_COLUMN_EVERY = (40.minutes..55.minutes).freeze
|
|
|
|
|
2021-11-21 22:13:57 -05:00
|
|
|
# The `STALE_TIMEOUT` constant defines the how far past the last contact or creation date a runner will be considered stale
|
|
|
|
STALE_TIMEOUT = 3.months
|
|
|
|
|
2018-06-11 07:37:47 -04:00
|
|
|
AVAILABLE_TYPES_LEGACY = %w[specific shared].freeze
|
|
|
|
AVAILABLE_TYPES = runner_types.keys.freeze
|
2022-03-02 04:13:50 -05:00
|
|
|
AVAILABLE_STATUSES = %w[active paused online offline not_connected never_contacted stale].freeze # TODO: Remove in %15.0: not_connected. In %16.0: active, paused. Relevant issues: https://gitlab.com/gitlab-org/gitlab/-/issues/347303, https://gitlab.com/gitlab-org/gitlab/-/issues/347305, https://gitlab.com/gitlab-org/gitlab/-/issues/344648
|
2018-06-11 07:37:47 -04:00
|
|
|
AVAILABLE_SCOPES = (AVAILABLE_TYPES_LEGACY + AVAILABLE_TYPES + AVAILABLE_STATUSES).freeze
|
2019-08-22 07:08:46 -04:00
|
|
|
|
2018-03-06 10:14:23 -05:00
|
|
|
FORM_EDITABLE = %i[description tag_list active run_untagged locked access_level maximum_timeout_human_readable].freeze
|
2020-04-21 11:21:10 -04:00
|
|
|
MINUTES_COST_FACTOR_FIELDS = %i[public_projects_minutes_cost_factor private_projects_minutes_cost_factor].freeze
|
2016-03-01 10:41:18 -05:00
|
|
|
|
2022-03-31 17:08:16 -04:00
|
|
|
TAG_LIST_MAX_LENGTH = 50
|
|
|
|
|
2016-10-18 17:20:36 -04:00
|
|
|
has_many :builds
|
2021-05-11 14:10:36 -04:00
|
|
|
has_many :runner_projects, inverse_of: :runner, autosave: true, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
2022-01-28 16:13:52 -05:00
|
|
|
has_many :projects, through: :runner_projects, disable_joins: true
|
2021-05-11 14:10:36 -04:00
|
|
|
has_many :runner_namespaces, inverse_of: :runner, autosave: true
|
2021-09-21 23:09:11 -04:00
|
|
|
has_many :groups, through: :runner_namespaces, disable_joins: true
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2020-09-03 05:08:20 -04:00
|
|
|
has_one :last_build, -> { order('id DESC') }, class_name: 'Ci::Build'
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-11-20 10:30:39 -05:00
|
|
|
before_save :ensure_token
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2021-12-08 16:10:18 -05:00
|
|
|
scope :active, -> (value = true) { where(active: value) }
|
|
|
|
scope :paused, -> { active(false) }
|
2019-08-22 07:08:46 -04:00
|
|
|
scope :online, -> { where('contacted_at > ?', online_contact_time_deadline) }
|
2021-11-21 22:13:57 -05:00
|
|
|
scope :recent, -> { where('ci_runners.created_at >= :date OR ci_runners.contacted_at >= :date', date: stale_deadline) }
|
|
|
|
scope :stale, -> { where('ci_runners.created_at < :date AND (ci_runners.contacted_at IS NULL OR ci_runners.contacted_at < :date)', date: stale_deadline) }
|
2021-07-22 17:09:40 -04:00
|
|
|
scope :offline, -> { where(arel_table[:contacted_at].lteq(online_contact_time_deadline)) }
|
2021-12-10 13:14:42 -05:00
|
|
|
scope :not_connected, -> { where(contacted_at: nil) } # TODO: Remove in 15.0
|
|
|
|
scope :never_contacted, -> { where(contacted_at: nil) }
|
2017-10-04 03:27:27 -04:00
|
|
|
scope :ordered, -> { order(id: :desc) }
|
2017-12-19 10:40:19 -05:00
|
|
|
|
2019-08-22 07:08:46 -04:00
|
|
|
scope :with_recent_runner_queue, -> { where('contacted_at > ?', recent_queue_deadline) }
|
|
|
|
|
2018-06-26 05:36:54 -04:00
|
|
|
# BACKWARD COMPATIBILITY: There are needed to maintain compatibility with `AVAILABLE_SCOPES` used by `lib/api/runners.rb`
|
2018-07-04 05:02:45 -04:00
|
|
|
scope :deprecated_shared, -> { instance_type }
|
2018-12-15 04:06:56 -05:00
|
|
|
scope :deprecated_specific, -> { project_type.or(group_type) }
|
2018-06-26 05:36:54 -04:00
|
|
|
|
2017-10-04 03:27:27 -04:00
|
|
|
scope :belonging_to_project, -> (project_id) {
|
|
|
|
joins(:runner_projects).where(ci_runner_projects: { project_id: project_id })
|
|
|
|
}
|
2017-12-19 10:40:19 -05:00
|
|
|
|
2021-12-31 13:16:55 -05:00
|
|
|
scope :belonging_to_group, -> (group_id) {
|
|
|
|
joins(:runner_namespaces)
|
|
|
|
.where(ci_runner_namespaces: { namespace_id: group_id })
|
|
|
|
}
|
|
|
|
|
|
|
|
scope :belonging_to_group_or_project_descendants, -> (group_id) {
|
2022-01-25 10:12:32 -05:00
|
|
|
group_ids = Ci::NamespaceMirror.by_group_and_descendants(group_id).select(:namespace_id)
|
2021-12-31 13:16:55 -05:00
|
|
|
project_ids = Ci::ProjectMirror.by_namespace_id(group_ids).select(:project_id)
|
|
|
|
|
|
|
|
group_runners = joins(:runner_namespaces).where(ci_runner_namespaces: { namespace_id: group_ids })
|
|
|
|
project_runners = joins(:runner_projects).where(ci_runner_projects: { project_id: project_ids })
|
|
|
|
|
|
|
|
union_sql = ::Gitlab::SQL::Union.new([group_runners, project_runners]).to_sql
|
|
|
|
|
|
|
|
from("(#{union_sql}) #{table_name}")
|
|
|
|
}
|
|
|
|
|
2022-01-18 07:16:49 -05:00
|
|
|
scope :belonging_to_group_and_ancestors, -> (group_id) {
|
|
|
|
group_self_and_ancestors_ids = ::Group.find_by(id: group_id)&.self_and_ancestor_ids
|
|
|
|
|
|
|
|
joins(:runner_namespaces)
|
|
|
|
.where(ci_runner_namespaces: { namespace_id: group_self_and_ancestors_ids })
|
|
|
|
}
|
|
|
|
|
2018-04-26 21:15:54 -04:00
|
|
|
scope :belonging_to_parent_group_of_project, -> (project_id) {
|
2022-01-07 22:14:00 -05:00
|
|
|
raise ArgumentError, "only 1 project_id allowed for performance reasons" unless project_id.is_a?(Integer)
|
|
|
|
|
2017-10-05 14:53:24 -04:00
|
|
|
project_groups = ::Group.joins(:projects).where(projects: { id: project_id })
|
|
|
|
|
2022-01-14 07:18:55 -05:00
|
|
|
belonging_to_group(project_groups.self_and_ancestors.pluck(:id))
|
2017-10-04 03:27:27 -04:00
|
|
|
}
|
2017-09-06 04:53:07 -04:00
|
|
|
|
2018-06-26 05:36:54 -04:00
|
|
|
scope :owned_or_instance_wide, -> (project_id) do
|
2022-02-02 04:16:48 -05:00
|
|
|
project = project_id.respond_to?(:shared_runners) ? project_id : Project.find(project_id)
|
|
|
|
|
2018-09-11 11:31:34 -04:00
|
|
|
from_union(
|
|
|
|
[
|
|
|
|
belonging_to_project(project_id),
|
2022-02-02 13:15:35 -05:00
|
|
|
project.group_runners_enabled? ? belonging_to_parent_group_of_project(project_id) : nil,
|
2022-02-02 04:16:48 -05:00
|
|
|
project.shared_runners
|
2022-02-02 13:15:35 -05:00
|
|
|
].compact,
|
2018-05-03 11:15:32 -04:00
|
|
|
remove_duplicates: false
|
2022-01-14 07:18:55 -05:00
|
|
|
)
|
2016-01-26 11:03:38 -05:00
|
|
|
end
|
|
|
|
|
2022-02-01 10:18:50 -05:00
|
|
|
scope :group_or_instance_wide, -> (group) do
|
|
|
|
from_union(
|
|
|
|
[
|
2022-02-07 07:12:27 -05:00
|
|
|
belonging_to_group_and_ancestors(group.id),
|
2022-02-02 04:16:48 -05:00
|
|
|
group.shared_runners
|
2022-02-01 10:18:50 -05:00
|
|
|
],
|
|
|
|
remove_duplicates: false
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2016-06-20 04:52:05 -04:00
|
|
|
scope :assignable_for, ->(project) do
|
2016-06-16 11:20:13 -04:00
|
|
|
# FIXME: That `to_sql` is needed to workaround a weird Rails bug.
|
|
|
|
# Without that, placeholders would miss one and couldn't match.
|
2018-09-11 11:31:34 -04:00
|
|
|
#
|
|
|
|
# We use "unscoped" here so that any current Ci::Runner filters don't
|
|
|
|
# apply to the inner query, which is not necessary.
|
|
|
|
exclude_runners = unscoped { project.runners.select(:id) }.to_sql
|
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
where(locked: false)
|
2018-09-11 11:31:34 -04:00
|
|
|
.where.not("ci_runners.id IN (#{exclude_runners})")
|
2018-05-09 08:46:34 -04:00
|
|
|
.project_type
|
2016-06-02 06:41:26 -04:00
|
|
|
end
|
|
|
|
|
2018-09-14 09:05:46 -04:00
|
|
|
scope :order_contacted_at_asc, -> { order(contacted_at: :asc) }
|
2021-06-14 08:10:13 -04:00
|
|
|
scope :order_contacted_at_desc, -> { order(contacted_at: :desc) }
|
|
|
|
scope :order_created_at_asc, -> { order(created_at: :asc) }
|
2018-09-14 09:05:46 -04:00
|
|
|
scope :order_created_at_desc, -> { order(created_at: :desc) }
|
2022-01-25 04:12:18 -05:00
|
|
|
scope :order_token_expires_at_asc, -> { order(token_expires_at: :asc) }
|
|
|
|
scope :order_token_expires_at_desc, -> { order(token_expires_at: :desc) }
|
2019-02-26 14:30:43 -05:00
|
|
|
scope :with_tags, -> { preload(:tags) }
|
2018-09-14 09:05:46 -04:00
|
|
|
|
2016-05-18 12:38:21 -04:00
|
|
|
validate :tag_constraints
|
2017-08-31 05:28:29 -04:00
|
|
|
validates :access_level, presence: true
|
2018-05-09 03:57:16 -04:00
|
|
|
validates :runner_type, presence: true
|
2016-05-05 08:27:06 -04:00
|
|
|
|
2018-05-23 07:23:49 -04:00
|
|
|
validate :no_projects, unless: :project_type?
|
|
|
|
validate :no_groups, unless: :group_type?
|
|
|
|
validate :any_project, if: :project_type?
|
|
|
|
validate :exactly_one_group, if: :group_type?
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
acts_as_taggable
|
|
|
|
|
2017-01-20 13:38:58 -05:00
|
|
|
after_destroy :cleanup_runner_queue
|
|
|
|
|
2021-12-13 10:12:59 -05:00
|
|
|
cached_attr_reader :version, :revision, :platform, :architecture, :ip_address, :contacted_at, :executor_type
|
2018-02-05 11:07:49 -05:00
|
|
|
|
2018-12-05 07:09:43 -05:00
|
|
|
chronic_duration_attr :maximum_timeout_human_readable, :maximum_timeout,
|
|
|
|
error_message: 'Maximum job timeout has a value which could not be accepted'
|
2018-02-20 19:09:59 -05:00
|
|
|
|
2018-03-21 12:34:55 -04:00
|
|
|
validates :maximum_timeout, allow_nil: true,
|
|
|
|
numericality: { greater_than_or_equal_to: 600,
|
|
|
|
message: 'needs to be at least 10 minutes' }
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
validates :public_projects_minutes_cost_factor, :private_projects_minutes_cost_factor,
|
|
|
|
allow_nil: false,
|
|
|
|
numericality: { greater_than_or_equal_to: 0.0,
|
|
|
|
message: 'needs to be non-negative' }
|
|
|
|
|
2021-05-26 17:10:49 -04:00
|
|
|
validates :config, json_schema: { filename: 'ci_runner_config' }
|
|
|
|
|
2022-02-21 19:14:20 -05:00
|
|
|
validates :maintenance_note, length: { maximum: 1024 }
|
2022-01-26 13:17:51 -05:00
|
|
|
|
|
|
|
alias_attribute :maintenance_note, :maintainer_note
|
2022-01-11 16:14:42 -05:00
|
|
|
|
2016-03-01 10:41:18 -05:00
|
|
|
# Searches for runners matching the given query.
|
|
|
|
#
|
2021-06-09 11:10:05 -04:00
|
|
|
# This method uses ILIKE on PostgreSQL for the description field and performs a full match on tokens.
|
2016-03-01 10:41:18 -05:00
|
|
|
#
|
2020-06-15 23:08:24 -04:00
|
|
|
# query - The search query as a String.
|
2016-03-01 10:41:18 -05:00
|
|
|
#
|
|
|
|
# Returns an ActiveRecord::Relation.
|
2015-08-25 21:42:46 -04:00
|
|
|
def self.search(query)
|
2021-06-09 11:10:05 -04:00
|
|
|
where(token: query).or(fuzzy_search(query, [:description]))
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2019-08-22 07:08:46 -04:00
|
|
|
def self.online_contact_time_deadline
|
2017-05-27 11:14:34 -04:00
|
|
|
ONLINE_CONTACT_TIMEOUT.ago
|
|
|
|
end
|
|
|
|
|
2021-11-21 22:13:57 -05:00
|
|
|
def self.stale_deadline
|
|
|
|
STALE_TIMEOUT.ago
|
|
|
|
end
|
|
|
|
|
2019-08-22 07:08:46 -04:00
|
|
|
def self.recent_queue_deadline
|
|
|
|
# we add queue expiry + online
|
|
|
|
# - contacted_at can be updated at any time within this interval
|
|
|
|
# we have always accurate `contacted_at` but it is stored in Redis
|
|
|
|
# and not persisted in database
|
|
|
|
(ONLINE_CONTACT_TIMEOUT + RUNNER_QUEUE_EXPIRY_TIME).ago
|
|
|
|
end
|
|
|
|
|
2018-09-14 09:05:46 -04:00
|
|
|
def self.order_by(order)
|
2021-06-14 08:10:13 -04:00
|
|
|
case order
|
|
|
|
when 'contacted_asc'
|
2018-09-14 09:05:46 -04:00
|
|
|
order_contacted_at_asc
|
2021-06-14 08:10:13 -04:00
|
|
|
when 'contacted_desc'
|
|
|
|
order_contacted_at_desc
|
|
|
|
when 'created_at_asc'
|
|
|
|
order_created_at_asc
|
2022-01-25 04:12:18 -05:00
|
|
|
when 'token_expires_at_asc'
|
|
|
|
order_token_expires_at_asc
|
|
|
|
when 'token_expires_at_desc'
|
|
|
|
order_token_expires_at_desc
|
2018-09-14 09:05:46 -04:00
|
|
|
else
|
|
|
|
order_created_at_desc
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-05-19 08:10:33 -04:00
|
|
|
def self.runner_matchers
|
|
|
|
unique_params = [
|
|
|
|
:runner_type,
|
|
|
|
:public_projects_minutes_cost_factor,
|
|
|
|
:private_projects_minutes_cost_factor,
|
|
|
|
:run_untagged,
|
|
|
|
:access_level,
|
|
|
|
Arel.sql("(#{arel_tag_names_array.to_sql})")
|
|
|
|
]
|
|
|
|
|
2022-01-14 10:16:52 -05:00
|
|
|
group(*unique_params).pluck('array_agg(ci_runners.id)', *unique_params).map do |values|
|
|
|
|
Gitlab::Ci::Matching::RunnerMatcher.new({
|
|
|
|
runner_ids: values[0],
|
|
|
|
runner_type: values[1],
|
|
|
|
public_projects_minutes_cost_factor: values[2],
|
|
|
|
private_projects_minutes_cost_factor: values[3],
|
|
|
|
run_untagged: values[4],
|
|
|
|
access_level: values[5],
|
|
|
|
tag_list: values[6]
|
|
|
|
})
|
2021-05-19 08:10:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def runner_matcher
|
|
|
|
strong_memoize(:runner_matcher) do
|
|
|
|
Gitlab::Ci::Matching::RunnerMatcher.new({
|
2021-06-17 08:10:02 -04:00
|
|
|
runner_ids: [id],
|
2021-05-19 08:10:33 -04:00
|
|
|
runner_type: runner_type,
|
|
|
|
public_projects_minutes_cost_factor: public_projects_minutes_cost_factor,
|
|
|
|
private_projects_minutes_cost_factor: private_projects_minutes_cost_factor,
|
|
|
|
run_untagged: run_untagged,
|
|
|
|
access_level: access_level,
|
|
|
|
tag_list: tag_list
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def assign_to(project, current_user = nil)
|
2018-06-26 05:36:54 -04:00
|
|
|
if instance_type?
|
2022-04-26 05:08:59 -04:00
|
|
|
raise ArgumentError, 'Transitioning an instance runner to a project runner is not supported'
|
2018-05-10 06:40:30 -04:00
|
|
|
elsif group_type?
|
|
|
|
raise ArgumentError, 'Transitioning a group runner to a project runner is not supported'
|
2018-05-10 05:16:26 -04:00
|
|
|
end
|
|
|
|
|
2018-05-28 09:31:46 -04:00
|
|
|
begin
|
|
|
|
transaction do
|
2021-10-12 05:09:35 -04:00
|
|
|
self.runner_projects << ::Ci::RunnerProject.new(project: project, runner: self)
|
2018-05-28 09:31:46 -04:00
|
|
|
self.save!
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
|
|
self.errors.add(:assign_to, e.message)
|
|
|
|
false
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def display_name
|
2016-05-30 07:46:47 -04:00
|
|
|
return short_sha if description.blank?
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
description
|
|
|
|
end
|
|
|
|
|
2015-10-12 15:12:31 -04:00
|
|
|
def online?
|
2019-08-22 07:08:46 -04:00
|
|
|
contacted_at && contacted_at > self.class.online_contact_time_deadline
|
2015-10-12 15:12:31 -04:00
|
|
|
end
|
|
|
|
|
2021-11-21 22:13:57 -05:00
|
|
|
def stale?
|
2021-12-06 04:10:26 -05:00
|
|
|
return false unless created_at
|
|
|
|
|
2021-11-21 22:13:57 -05:00
|
|
|
[created_at, contacted_at].compact.max < self.class.stale_deadline
|
|
|
|
end
|
|
|
|
|
2021-12-06 04:10:26 -05:00
|
|
|
def status(legacy_mode = nil)
|
|
|
|
return deprecated_rest_status if legacy_mode == '14.5'
|
|
|
|
|
|
|
|
return :stale if stale?
|
2021-12-10 13:14:42 -05:00
|
|
|
return :never_contacted unless contacted_at
|
2021-11-05 02:13:16 -04:00
|
|
|
|
|
|
|
online? ? :online : :offline
|
|
|
|
end
|
|
|
|
|
|
|
|
# DEPRECATED
|
2022-03-02 04:13:50 -05:00
|
|
|
# TODO Remove in %16.0 in favor of `status` for REST calls
|
2021-11-05 02:13:16 -04:00
|
|
|
def deprecated_rest_status
|
2022-03-02 04:13:50 -05:00
|
|
|
if contacted_at.nil? # TODO Remove in %15.0, see https://gitlab.com/gitlab-org/gitlab/-/issues/344648
|
2015-10-12 15:12:31 -04:00
|
|
|
:not_connected
|
|
|
|
elsif active?
|
|
|
|
online? ? :online : :offline
|
|
|
|
else
|
|
|
|
:paused
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def belongs_to_one_project?
|
|
|
|
runner_projects.count == 1
|
|
|
|
end
|
|
|
|
|
2020-07-17 05:09:43 -04:00
|
|
|
def belongs_to_more_than_one_project?
|
2021-10-12 05:09:35 -04:00
|
|
|
runner_projects.limit(2).count(:all) > 1
|
2020-07-17 05:09:43 -04:00
|
|
|
end
|
|
|
|
|
2018-04-30 02:43:29 -04:00
|
|
|
def assigned_to_group?
|
2018-05-02 11:43:20 -04:00
|
|
|
runner_namespaces.any?
|
2017-09-25 09:28:33 -04:00
|
|
|
end
|
|
|
|
|
2018-04-30 02:43:29 -04:00
|
|
|
def assigned_to_project?
|
2017-10-04 07:55:34 -04:00
|
|
|
runner_projects.any?
|
|
|
|
end
|
|
|
|
|
2021-03-05 10:09:12 -05:00
|
|
|
def match_build_if_online?(build)
|
2022-01-28 10:14:45 -05:00
|
|
|
active? && online? && matches_build?(build)
|
2016-06-01 06:34:20 -04:00
|
|
|
end
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
def only_for?(project)
|
2022-01-21 10:13:54 -05:00
|
|
|
!runner_projects.where.not(project_id: project.id).exists?
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def short_sha
|
2015-10-14 08:21:49 -04:00
|
|
|
token[0...8] if token
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
2016-05-06 02:47:19 -04:00
|
|
|
|
2021-03-02 19:10:50 -05:00
|
|
|
def tag_list
|
|
|
|
if tags.loaded?
|
|
|
|
tags.map(&:name)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-06 02:47:19 -04:00
|
|
|
def has_tags?
|
|
|
|
tag_list.any?
|
|
|
|
end
|
2016-05-07 14:36:03 -04:00
|
|
|
|
2016-07-20 07:17:21 -04:00
|
|
|
def predefined_variables
|
2018-03-14 06:15:18 -04:00
|
|
|
Gitlab::Ci::Variables::Collection.new
|
|
|
|
.append(key: 'CI_RUNNER_ID', value: id.to_s)
|
|
|
|
.append(key: 'CI_RUNNER_DESCRIPTION', value: description)
|
|
|
|
.append(key: 'CI_RUNNER_TAGS', value: tag_list.to_s)
|
2016-07-20 07:17:21 -04:00
|
|
|
end
|
|
|
|
|
2016-12-15 19:04:18 -05:00
|
|
|
def tick_runner_queue
|
2021-06-02 11:09:59 -04:00
|
|
|
##
|
|
|
|
# We only stick a runner to primary database to be able to detect the
|
|
|
|
# replication lag in `EE::Ci::RegisterJobService#execute`. The
|
|
|
|
# intention here is not to execute `Ci::RegisterJobService#execute` on
|
|
|
|
# the primary database.
|
|
|
|
#
|
2021-10-11 11:13:01 -04:00
|
|
|
::Ci::Runner.sticking.stick(:runner, id)
|
2021-06-02 11:09:59 -04:00
|
|
|
|
2017-01-20 08:16:13 -05:00
|
|
|
SecureRandom.hex.tap do |new_update|
|
2017-03-06 05:44:45 -05:00
|
|
|
::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_update,
|
2017-02-28 06:07:04 -05:00
|
|
|
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: true)
|
2017-01-20 08:16:13 -05:00
|
|
|
end
|
2016-12-15 16:30:31 -05:00
|
|
|
end
|
|
|
|
|
2016-12-15 19:04:18 -05:00
|
|
|
def ensure_runner_queue_value
|
2017-03-06 05:44:45 -05:00
|
|
|
new_value = SecureRandom.hex
|
|
|
|
::Gitlab::Workhorse.set_key_and_notify(runner_queue_key, new_value,
|
|
|
|
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: false)
|
2016-12-15 19:04:18 -05:00
|
|
|
end
|
|
|
|
|
2017-08-24 12:44:36 -04:00
|
|
|
def runner_queue_value_latest?(value)
|
2016-12-15 19:04:18 -05:00
|
|
|
ensure_runner_queue_value == value if value.present?
|
2016-12-15 16:30:31 -05:00
|
|
|
end
|
|
|
|
|
2020-05-27 11:08:11 -04:00
|
|
|
def heartbeat(values)
|
2021-06-02 11:09:59 -04:00
|
|
|
##
|
|
|
|
# We can safely ignore writes performed by a runner heartbeat. We do
|
|
|
|
# not want to upgrade database connection proxy to use the primary
|
|
|
|
# database after heartbeat write happens.
|
|
|
|
#
|
|
|
|
::Gitlab::Database::LoadBalancing::Session.without_sticky_writes do
|
2021-12-13 10:12:59 -05:00
|
|
|
values = values&.slice(:version, :revision, :platform, :architecture, :ip_address, :config, :executor) || {}
|
2021-06-02 11:09:59 -04:00
|
|
|
values[:contacted_at] = Time.current
|
2021-12-13 10:12:59 -05:00
|
|
|
values[:executor_type] = EXECUTOR_NAME_TO_TYPES.fetch(values.delete(:executor), :unknown)
|
2018-01-29 14:56:28 -05:00
|
|
|
|
2021-06-02 11:09:59 -04:00
|
|
|
cache_attributes(values)
|
2018-01-29 14:56:28 -05:00
|
|
|
|
2021-06-02 11:09:59 -04:00
|
|
|
# We save data without validation, it will always change due to `contacted_at`
|
|
|
|
self.update_columns(values) if persist_cached_data?
|
|
|
|
end
|
2018-01-28 18:25:13 -05:00
|
|
|
end
|
|
|
|
|
2018-05-02 10:42:12 -04:00
|
|
|
def pick_build!(build)
|
2021-05-25 17:10:26 -04:00
|
|
|
tick_runner_queue if matches_build?(build)
|
2018-02-26 10:20:29 -05:00
|
|
|
end
|
|
|
|
|
2022-01-28 10:14:45 -05:00
|
|
|
def matches_build?(build)
|
|
|
|
runner_matcher.matches?(build.build_matcher)
|
|
|
|
end
|
|
|
|
|
2019-01-04 00:54:45 -05:00
|
|
|
def uncached_contacted_at
|
|
|
|
read_attribute(:contacted_at)
|
|
|
|
end
|
|
|
|
|
2021-09-15 11:10:13 -04:00
|
|
|
def namespace_ids
|
|
|
|
strong_memoize(:namespace_ids) do
|
|
|
|
runner_namespaces.pluck(:namespace_id).compact
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-02-07 07:12:27 -05:00
|
|
|
def compute_token_expiration
|
|
|
|
case runner_type
|
|
|
|
when 'instance_type'
|
|
|
|
compute_token_expiration_instance
|
|
|
|
when 'group_type'
|
|
|
|
compute_token_expiration_group
|
|
|
|
when 'project_type'
|
|
|
|
compute_token_expiration_project
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.token_expiration_enforced?
|
|
|
|
Feature.enabled?(:enforce_runner_token_expires_at, default_enabled: :yaml)
|
|
|
|
end
|
|
|
|
|
2016-05-07 14:36:03 -04:00
|
|
|
private
|
|
|
|
|
2021-12-13 10:12:59 -05:00
|
|
|
EXECUTOR_NAME_TO_TYPES = {
|
2021-12-22 19:11:02 -05:00
|
|
|
'unknown' => :unknown,
|
2021-12-13 10:12:59 -05:00
|
|
|
'custom' => :custom,
|
|
|
|
'shell' => :shell,
|
|
|
|
'docker' => :docker,
|
|
|
|
'docker-windows' => :docker_windows,
|
|
|
|
'docker-ssh' => :docker_ssh,
|
|
|
|
'ssh' => :ssh,
|
|
|
|
'parallels' => :parallels,
|
|
|
|
'virtualbox' => :virtualbox,
|
|
|
|
'docker+machine' => :docker_machine,
|
|
|
|
'docker-ssh+machine' => :docker_ssh_machine,
|
|
|
|
'kubernetes' => :kubernetes
|
|
|
|
}.freeze
|
|
|
|
|
2021-12-22 19:11:02 -05:00
|
|
|
EXECUTOR_TYPE_TO_NAMES = EXECUTOR_NAME_TO_TYPES.invert.freeze
|
|
|
|
|
2022-02-07 07:12:27 -05:00
|
|
|
def compute_token_expiration_instance
|
|
|
|
return unless expiration_interval = Gitlab::CurrentSettings.runner_token_expiration_interval
|
|
|
|
|
|
|
|
expiration_interval.seconds.from_now
|
|
|
|
end
|
|
|
|
|
|
|
|
def compute_token_expiration_group
|
|
|
|
::Group.where(id: runner_namespaces.map(&:namespace_id)).map(&:effective_runner_token_expiration_interval).compact.min&.from_now
|
|
|
|
end
|
|
|
|
|
|
|
|
def compute_token_expiration_project
|
|
|
|
Project.where(id: runner_projects.map(&:project_id)).map(&:effective_runner_token_expiration_interval).compact.min&.from_now
|
|
|
|
end
|
|
|
|
|
2017-01-20 13:38:58 -05:00
|
|
|
def cleanup_runner_queue
|
2019-07-22 02:00:37 -04:00
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
2017-01-20 13:38:58 -05:00
|
|
|
redis.del(runner_queue_key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-15 19:04:18 -05:00
|
|
|
def runner_queue_key
|
2016-12-16 10:33:08 -05:00
|
|
|
"runner:build_queue:#{self.token}"
|
2016-12-15 16:30:31 -05:00
|
|
|
end
|
|
|
|
|
2018-02-04 12:34:21 -05:00
|
|
|
def persist_cached_data?
|
|
|
|
# Use a random threshold to prevent beating DB updates.
|
2019-08-22 07:08:46 -04:00
|
|
|
contacted_at_max_age = Random.rand(UPDATE_CONTACT_COLUMN_EVERY)
|
2018-02-04 12:34:21 -05:00
|
|
|
|
|
|
|
real_contacted_at = read_attribute(:contacted_at)
|
|
|
|
real_contacted_at.nil? ||
|
2020-05-22 05:08:09 -04:00
|
|
|
(Time.current - real_contacted_at) >= contacted_at_max_age
|
2018-02-04 12:34:21 -05:00
|
|
|
end
|
|
|
|
|
2016-05-18 12:38:21 -04:00
|
|
|
def tag_constraints
|
2016-05-07 14:36:03 -04:00
|
|
|
unless has_tags? || run_untagged?
|
|
|
|
errors.add(:tags_list,
|
|
|
|
'can not be empty when runner is not allowed to pick untagged jobs')
|
|
|
|
end
|
2022-03-31 17:08:16 -04:00
|
|
|
|
|
|
|
if tag_list_changed? && tag_list.count > TAG_LIST_MAX_LENGTH
|
|
|
|
errors.add(:tags_list,
|
|
|
|
"Too many tags specified. Please limit the number of tags to #{TAG_LIST_MAX_LENGTH}")
|
|
|
|
end
|
2016-05-07 14:36:03 -04:00
|
|
|
end
|
2016-06-01 06:34:20 -04:00
|
|
|
|
2018-05-11 06:03:40 -04:00
|
|
|
def no_projects
|
2021-10-12 05:09:35 -04:00
|
|
|
if runner_projects.any?
|
|
|
|
errors.add(:runner, 'cannot have projects assigned')
|
2018-05-11 06:03:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def no_groups
|
2021-10-25 02:09:46 -04:00
|
|
|
if runner_namespaces.any?
|
|
|
|
errors.add(:runner, 'cannot have groups assigned')
|
2018-05-23 07:23:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def any_project
|
2021-10-12 05:09:35 -04:00
|
|
|
unless runner_projects.any?
|
|
|
|
errors.add(:runner, 'needs to be assigned to at least one project')
|
2018-05-23 07:23:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def exactly_one_group
|
2021-10-25 02:09:46 -04:00
|
|
|
unless runner_namespaces.one?
|
|
|
|
errors.add(:runner, 'needs to be assigned to exactly one group')
|
2017-12-07 11:21:16 -05:00
|
|
|
end
|
2018-05-11 06:03:40 -04:00
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Ci::Runner.prepend_mod_with('Ci::Runner')
|