Sha256: 4f70b5828f746de3224f5e48766b9725ca6c19ddae18e59d5c7fc97fc2564b4a

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

class KuberKit::ServiceDeployer::Strategies::DockerCompose < KuberKit::ServiceDeployer::Strategies::Abstract
  include KuberKit::Import[
    "service_reader.reader",
    "shell.docker_compose_commands",
    "configs",
  ]

  STRATEGY_OPTIONS = [
    :service_name, 
    :command_name,
    :command_args,
    :detached
  ]

  Contract KuberKit::Shell::AbstractShell, KuberKit::Core::Service => Any
  def deploy(shell, service)
    service_config = reader.read(shell, service)
    config_path    = "#{configs.service_config_dir}/#{service.name}.yml"
    shell.write(config_path, service_config)

    strategy_options = service.attribute(:deployer, default: {})
    unknown_options  = strategy_options.keys.map(&:to_sym) - STRATEGY_OPTIONS
    if unknown_options.any?
      raise KuberKit::Error, "Unknow options for deploy strategy: #{unknown_options}. Available options: #{STRATEGY_OPTIONS}"
    end

    service_name = strategy_options.fetch(:service_name, service.name.to_s)
    command_name = strategy_options.fetch(:command_name, "bash")
    command_args = strategy_options.fetch(:command_args, nil)

    docker_compose_commands.run(shell, config_path, 
      service:  service_name, 
      command:  command_name,
      args:     command_args, 
      detached: !!strategy_options[:detached]
    )
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
kuber_kit-0.4.0 lib/kuber_kit/service_deployer/strategies/docker_compose.rb
kuber_kit-0.3.11 lib/kuber_kit/service_deployer/strategies/docker_compose.rb
kuber_kit-0.3.10 lib/kuber_kit/service_deployer/strategies/docker_compose.rb
kuber_kit-0.3.9 lib/kuber_kit/service_deployer/strategies/docker_compose.rb