class KuberKit::ImageCompiler::BuildServerPoolFactory

Public Instance Methods

create(ssh_shell_class: KuberKit::Shell::SshShell) click to toggle source
# File lib/kuber_kit/image_compiler/build_server_pool_factory.rb, line 6
def create(ssh_shell_class: KuberKit::Shell::SshShell)
  KuberKit::ImageCompiler::BuildServerPool.new(
    local_shell:      local_shell,
    build_servers:    KuberKit.current_configuration.build_servers,
    ssh_shell_class:  ssh_shell_class,
  )
end