Files
kamal/lib/tasks/mrsk/registry.rake
David Heinemeier Hansson 14867a2f61 Allow logging out of registry
2023-01-08 14:18:00 +01:00

19 lines
459 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
desc "Logout of the registry remotely"
task :logout do
on(MRSK_CONFIG.servers) { execute registry.logout }
end
end
end