71 lines
1.9 KiB
Ruby
71 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Entry
|
|
##
|
|
# Entry that represents a configuration of Docker service.
|
|
#
|
|
# TODO: remove duplication with Image superclass by defining a common
|
|
# Imageable concern.
|
|
# https://gitlab.com/gitlab-org/gitlab/issues/208774
|
|
class Service < ::Gitlab::Config::Entry::Node
|
|
include ::Gitlab::Config::Entry::Validatable
|
|
include ::Gitlab::Config::Entry::Attributable
|
|
include ::Gitlab::Config::Entry::Configurable
|
|
|
|
ALLOWED_KEYS = %i[name entrypoint command alias ports].freeze
|
|
|
|
validations do
|
|
validates :config, hash_or_string: true
|
|
validates :config, allowed_keys: ALLOWED_KEYS
|
|
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
|
|
|
|
validates :command, array_of_strings: true, allow_nil: true
|
|
validates :alias, type: String, allow_nil: true
|
|
validates :alias, type: String, presence: true, unless: ->(record) { record.ports.blank? }
|
|
end
|
|
|
|
entry :ports, Entry::Ports,
|
|
description: 'Ports used to expose the service'
|
|
|
|
attributes :ports
|
|
|
|
def alias
|
|
value[:alias]
|
|
end
|
|
|
|
def command
|
|
value[:command]
|
|
end
|
|
|
|
def name
|
|
value[:name]
|
|
end
|
|
|
|
def entrypoint
|
|
value[:entrypoint]
|
|
end
|
|
|
|
def value
|
|
return { name: @config } if string?
|
|
return @config if hash?
|
|
|
|
{}
|
|
end
|
|
|
|
def with_image_ports?
|
|
opt(:with_image_ports)
|
|
end
|
|
|
|
def skip_config_hash_validation?
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|