cloud.rb 620 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env ruby
  2. require 'thor'
  3. require_relative 'lib/gce_command'
  4. require_relative 'lib/aws_command'
  5. # Don't buffer output to the client
  6. STDOUT.sync = true
  7. STDERR.sync = true
  8. module OpenShift
  9. module Ops
  10. class CloudCommand < Thor
  11. desc 'gce', 'Manages Google Compute Engine assets'
  12. subcommand "gce", GceCommand
  13. desc 'aws', 'Manages Amazon Web Services assets'
  14. subcommand "aws", AwsCommand
  15. end
  16. end
  17. end
  18. if __FILE__ == $0
  19. SCRIPT_DIR = File.expand_path(File.dirname(__FILE__))
  20. Dir.chdir(SCRIPT_DIR) do
  21. # Kick off thor
  22. OpenShift::Ops::CloudCommand.start(ARGV)
  23. end
  24. end