10 lines
304 B
Ruby
Executable File
10 lines
304 B
Ruby
Executable File
#!/usr/bin/env rake
|
|
|
|
desc 'Invoke itamae command for the first time'
|
|
task :ubuntu do
|
|
node = `ls -1 nodes/*.json | xargs -I % basename % .json | fzf`
|
|
node.chomp!
|
|
|
|
sh "ITAMAE_PASSWORD=musashi bundle ex itamae ssh -u ubuntu -i ~/.ssh/amazon.pem --host #{node} -j nodes/#{node}.json entrypoint.rb"
|
|
end
|