Adds hooks to MRSK. Currently just two hooks, pre-build and post-push. We could break the build and push into two separate commands if we found the need for post-build and/or pre-push hooks. Hooks are stored in `.mrsk/hooks`. Running `mrsk init` will now create that folder and add sample hook scripts. Hooks returning non-zero exit codes will abort the current command. Further potential work here: - We could replace the audit broadcast command with a post-deploy/post-rollback hook or similar - Maybe provide pre-command/post-command hooks that run after every mrsk invocation - Also look for hooks in `~/.mrsk/hooks`
102 lines
2.5 KiB
Ruby
102 lines
2.5 KiB
Ruby
class Mrsk::Cli::Build < Mrsk::Cli::Base
|
|
class BuildError < StandardError; end
|
|
|
|
desc "deliver", "Build app and push app image to registry then pull image on servers"
|
|
def deliver
|
|
with_lock do
|
|
push
|
|
pull
|
|
end
|
|
end
|
|
|
|
desc "push", "Build and push app image to registry"
|
|
def push
|
|
with_lock do
|
|
cli = self
|
|
|
|
verify_local_dependencies
|
|
|
|
run_hook("pre-build")
|
|
run_locally do
|
|
begin
|
|
MRSK.with_verbosity(:debug) { execute *MRSK.builder.push }
|
|
rescue SSHKit::Command::Failed => e
|
|
if e.message =~ /(no builder)|(no such file or directory)/
|
|
error "Missing compatible builder, so creating a new one first"
|
|
|
|
if cli.create
|
|
MRSK.with_verbosity(:debug) { execute *MRSK.builder.push }
|
|
end
|
|
else
|
|
raise
|
|
end
|
|
end
|
|
end
|
|
run_hook("post-push")
|
|
end
|
|
end
|
|
|
|
desc "pull", "Pull app image from registry onto servers"
|
|
def pull
|
|
with_lock do
|
|
on(MRSK.hosts) do
|
|
execute *MRSK.auditor.record("Pulled image with version #{MRSK.config.version}"), verbosity: :debug
|
|
execute *MRSK.builder.clean, raise_on_non_zero_exit: false
|
|
execute *MRSK.builder.pull
|
|
end
|
|
end
|
|
end
|
|
|
|
desc "create", "Create a build setup"
|
|
def create
|
|
with_lock do
|
|
run_locally do
|
|
begin
|
|
debug "Using builder: #{MRSK.builder.name}"
|
|
execute *MRSK.builder.create
|
|
rescue SSHKit::Command::Failed => e
|
|
if e.message =~ /stderr=(.*)/
|
|
error "Couldn't create remote builder: #{$1}"
|
|
false
|
|
else
|
|
raise
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
desc "remove", "Remove build setup"
|
|
def remove
|
|
with_lock do
|
|
run_locally do
|
|
debug "Using builder: #{MRSK.builder.name}"
|
|
execute *MRSK.builder.remove
|
|
end
|
|
end
|
|
end
|
|
|
|
desc "details", "Show build setup"
|
|
def details
|
|
run_locally do
|
|
puts "Builder: #{MRSK.builder.name}"
|
|
puts capture(*MRSK.builder.info)
|
|
end
|
|
end
|
|
|
|
private
|
|
def verify_local_dependencies
|
|
run_locally do
|
|
begin
|
|
execute *MRSK.builder.ensure_local_dependencies_installed
|
|
rescue SSHKit::Command::Failed => e
|
|
build_error = e.message =~ /command not found/ ?
|
|
"Docker is not installed locally" :
|
|
"Docker buildx plugin is not installed locally"
|
|
|
|
raise BuildError, build_error
|
|
end
|
|
end
|
|
end
|
|
end
|