launch_helper.rb 721 B

123456789101112131415161718192021222324252627282930
  1. module OpenShift
  2. module Ops
  3. class LaunchHelper
  4. MYDIR = File.expand_path(File.dirname(__FILE__))
  5. def self.expand_name(name)
  6. return [name] unless name =~ /^([a-zA-Z0-9\-]+)\{(\d+)-(\d+)\}$/
  7. # Regex matched, so grab the values
  8. start_num = $2
  9. end_num = $3
  10. retval = []
  11. start_num.upto(end_num) do |i|
  12. retval << "#{$1}#{i}"
  13. end
  14. return retval
  15. end
  16. def self.get_gce_host_types()
  17. return Dir.glob("#{MYDIR}/../playbooks/gce/*").map { |d| File.basename(d) }
  18. end
  19. def self.get_aws_host_types()
  20. return Dir.glob("#{MYDIR}/../playbooks/aws/*").map { |d| File.basename(d) }
  21. end
  22. end
  23. end
  24. end