class Dapp::Kube::CLI::Command::Kube::Deploy

Public Instance Methods

run(argv = ARGV) click to toggle source
# File lib/dapp/kube/cli/command/kube/deploy.rb, line 70
def run(argv = ARGV)
  self.class.parse_options(self, argv)

  options = cli_options
  options[:tag] = [*options.delete(:tag), *options.delete(:image_version)]
  options[:repo] = self.class.required_argument(self, 'repo')
  run_dapp_command(run_method, options: options)
end