summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/entry/imageable.rb
blob: 1aecfee9ab94cf4fc67ee19c6da6905e33c9f67d (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module Entry
        ##
        # Represents Imageable concern shared by Image and Service.
        module Imageable
          extend ActiveSupport::Concern

          include ::Gitlab::Config::Entry::Attributable
          include ::Gitlab::Config::Entry::Configurable

          IMAGEABLE_ALLOWED_KEYS = %i[name entrypoint ports pull_policy].freeze

          included do
            include ::Gitlab::Config::Entry::Validatable

            validations do
              validates :config, hash_or_string: true
              validates :config, disallowed_keys: %i[ports], unless: :with_image_ports?

              validates :name, type: String, presence: true
              validates :entrypoint, array_of_strings: true, allow_nil: true
            end

            attributes :ports, :pull_policy

            entry :ports, Entry::Ports,
                description: 'Ports used to expose the image/service'

            entry :pull_policy, Entry::PullPolicy,
                description: 'Pull policy for the image/service'
          end

          def name
            value[:name]
          end

          def entrypoint
            value[:entrypoint]
          end

          def with_image_ports?
            opt(:with_image_ports)
          end

          def skip_config_hash_validation?
            true
          end
        end
      end
    end
  end
end