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

services.rb « entry « config « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44e2903a300b621b2ee8fb344af33b755b6b78a0 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module Entry
        ##
        # Entry that represents a configuration of Docker services.
        #
        class Services < ::Gitlab::Config::Entry::ComposableArray
          include ::Gitlab::Config::Entry::Validatable

          validations do
            validates :config, type: Array
            validates :config, services_with_ports_alias_unique: true, if: ->(record) { record.opt(:with_image_ports) }
          end

          def composable_class
            Entry::Service
          end
        end
      end
    end
  end
end