Files
kamal/lib/tasks/mrsk/registry.rake
2023-01-07 21:31:24 +01:00

14 lines
329 B
Ruby

require_relative "setup"
registry = Mrsk::Commands::Registry.new(MRSK_CONFIG)
namespace :mrsk do
namespace :registry do
desc "Login to the registry locally and remotely"
task :login do
run_locally { execute registry.login }
on(MRSK_CONFIG.servers) { execute registry.login }
end
end
end