Welcome to mirror list, hosted at ThFree Co, Russian Federation.

container_registry.rake « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7687cb237cc9f1b9896f7af82c72963f4a90a8a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
namespace :gitlab do
  namespace :container_registry do
    desc "GitLab | Container Registry | Configure"
    task configure: :gitlab_environment do
      configure
    end

    def configure
      registry_config = Gitlab.config.registry

      unless registry_config.enabled && registry_config.api_url.presence
        puts "Registry is not enabled or registry api url is not present.".color(:yellow)
        return
      end

      warn_user_is_not_gitlab

      url = registry_config.api_url
      # registry_info will query the /v2 route of the registry API. This route
      # requires authentication, but not authorization (the response has no body,
      # only headers that show the version of the registry). There is no
      # associated user when running this rake, so we need to generate a valid
      # JWT token with no access permissions to authenticate as a trusted client.
      token = Auth::ContainerRegistryAuthenticationService.access_token([], [])
      client = ContainerRegistry::Client.new(url, token: token)
      info = client.registry_info

      Gitlab::CurrentSettings.update!(
        container_registry_vendor: info[:vendor] || '',
        container_registry_version: info[:version] || '',
        container_registry_features: info[:features] || []
      )
    end
  end
end