itamae/tasks/prep.rake

10 lines
271 B
Ruby
Raw Normal View History

2019-03-03 08:50:49 +00:00
#!/usr/bin/env rake
desc 'Invoke itamae command for the first time'
task :prep do
2019-11-03 03:55:06 +00:00
node = `ls -1 nodes/*.json | xargs -I % basename % .json | fzf`
2019-03-03 08:50:49 +00:00
node.chomp!
sh "ITAMAE_PASSWORD=musashi bundle ex itamae ssh --host #{node} -j nodes/#{node}.json entrypoint.rb"
end