debian-mirror-gitlab/lib/gitlab/ci/build/credentials/registry/gitlab_registry.rb
2021-03-11 19:13:27 +05:30

32 lines
646 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Build
module Credentials
module Registry
class GitlabRegistry < Credentials::Base
attr_reader :username, :password
def initialize(build)
@username = Gitlab::Auth::CI_JOB_USER
@password = build.token
end
def url
Gitlab.config.registry.host_port
end
def valid?
Gitlab.config.registry.enabled
end
def type
'registry'
end
end
end
end
end
end
end