Allow exec to run in its own container

This commit is contained in:
David Heinemeier Hansson
2023-01-15 13:51:08 +01:00
parent 89161b66a1
commit 8e58a9385a
3 changed files with 22 additions and 3 deletions

View File

@@ -41,14 +41,17 @@ class Mrsk::Cli::App < Mrsk::Cli::Base
desc "exec [CMD]", "Execute a custom task on servers passed in as CMD='bin/rake some:task'"
option :once, type: :boolean, default: false
option :run, type: :boolean, default: false
def exec(cmd)
runner = options[:run] ? :run_exec : :exec
if options[:once]
on(MRSK.config.primary_host) { puts capture(*MRSK.app.exec(cmd), verbosity: Logger::INFO) }
on(MRSK.config.primary_host) { puts capture(*MRSK.app.send(runner, cmd), verbosity: Logger::INFO) }
else
on(MRSK.config.hosts) { |host| puts "App Host: #{host}\n" + capture(*MRSK.app.exec(cmd), verbosity: Logger::INFO) + "\n\n" }
on(MRSK.config.hosts) { |host| puts "App Host: #{host}\n" + capture(*MRSK.app.send(runner, cmd), verbosity: Logger::INFO) + "\n\n" }
end
end
desc "console", "Start Rails Console on primary host"
option :host, desc: "Start console on a different host"
def console

View File

@@ -40,6 +40,16 @@ class Mrsk::Commands::App < Mrsk::Commands::Base
*command
end
def run_exec(*command)
docker :run,
"-it",
"--rm",
*rails_master_key_arg,
*config.env_args,
config.absolute_image,
*command
end
def console(host: config.primary_host)
"ssh -t #{config.ssh_user}@#{host} '#{exec("bin/rails", "c", interactive: true).join(" ")}'"
end