class KuberKit::ServiceDeployer::ActionHandler
Public Instance Methods
call(shell, service_name)
click to toggle source
# File lib/kuber_kit/service_deployer/action_handler.rb, line 9 def call(shell, service_name) service = service_store.get_service(service_name) strategy_name = strategy_detector.call(service) deployer.deploy(shell, service, strategy_name) end