debian-mirror-gitlab/lib/gitlab/ci/config/entry/image.rb

58 lines
1.4 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
module Gitlab
module Ci
class Config
2017-08-17 22:00:37 +05:30
module Entry
2016-08-24 12:49:21 +05:30
##
# Entry that represents a Docker image.
#
2019-02-15 15:39:39 +05:30
class Image < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Validatable
2019-07-07 11:18:12 +05:30
include ::Gitlab::Config::Entry::Attributable
include ::Gitlab::Config::Entry::Configurable
2016-08-24 12:49:21 +05:30
2019-07-07 11:18:12 +05:30
ALLOWED_KEYS = %i[name entrypoint ports].freeze
2017-09-10 17:25:29 +05:30
2016-08-24 12:49:21 +05:30
validations do
2017-09-10 17:25:29 +05:30
validates :config, hash_or_string: true
validates :config, allowed_keys: ALLOWED_KEYS
2019-07-07 11:18:12 +05:30
validates :config, disallowed_keys: %i[ports], unless: :with_image_ports?
2017-09-10 17:25:29 +05:30
validates :name, type: String, presence: true
validates :entrypoint, array_of_strings: true, allow_nil: true
end
2019-07-07 11:18:12 +05:30
entry :ports, Entry::Ports,
2019-09-04 21:01:54 +05:30
description: 'Ports used to expose the image'
2017-09-10 17:25:29 +05:30
2019-07-07 11:18:12 +05:30
attributes :ports
2017-09-10 17:25:29 +05:30
def name
value[:name]
end
def entrypoint
value[:entrypoint]
end
def value
return { name: @config } if string?
return @config if hash?
2018-03-17 18:26:18 +05:30
2017-09-10 17:25:29 +05:30
{}
2016-08-24 12:49:21 +05:30
end
2019-07-07 11:18:12 +05:30
def with_image_ports?
opt(:with_image_ports)
end
def skip_config_hash_validation?
true
end
2016-08-24 12:49:21 +05:30
end
end
end
end
end