summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/build/credentials/registry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/build/credentials/registry.rb')
-rw-r--r--lib/gitlab/ci/build/credentials/registry.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/gitlab/ci/build/credentials/registry.rb b/lib/gitlab/ci/build/credentials/registry.rb
deleted file mode 100644
index 1c8588d9913..00000000000
--- a/lib/gitlab/ci/build/credentials/registry.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Ci
- module Build
- module Credentials
- class Registry < Base
- attr_reader :username, :password
-
- def initialize(build)
- @username = 'gitlab-ci-token'
- @password = build.token
- end
-
- def url
- Gitlab.config.registry.host_port
- end
-
- def valid?
- Gitlab.config.registry.enabled
- end
- end
- end
- end
- end
-end