# frozen_string_literal: true module Gitlab module Ci class Config module Entry ## # Entry that represents a configuration of Docker service. # class Service < ::Gitlab::Config::Entry::Node include ::Gitlab::Ci::Config::Entry::Imageable ALLOWED_KEYS = %i[command alias variables].freeze LEGACY_ALLOWED_KEYS = %i[command alias variables].freeze validations do validates :config, allowed_keys: ALLOWED_KEYS + IMAGEABLE_ALLOWED_KEYS, if: :ci_docker_image_pull_policy_enabled? validates :config, allowed_keys: LEGACY_ALLOWED_KEYS + IMAGEABLE_LEGACY_ALLOWED_KEYS, unless: :ci_docker_image_pull_policy_enabled? 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 :variables, ::Gitlab::Ci::Config::Entry::Variables, description: 'Environment variables available for this service.', inherit: false attributes :variables def alias value[:alias] end def command value[:command] end def value if string? { name: @config } elsif hash? @config.merge( pull_policy: (pull_policy_value if ci_docker_image_pull_policy_enabled?) ).compact else {} end end end end end end end