summaryrefslogtreecommitdiffstats
path: root/lib/launch_helper.rb
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2015-05-27 15:05:13 -0400
committerThomas Wiest <twiest@redhat.com>2015-05-27 16:20:00 -0400
commit8fc2fe0b7ecf71b675158eabcc00a3a14218abe2 (patch)
tree3a96ee3547c7a5a66c8ca4b7afb71263ba8a28aa /lib/launch_helper.rb
parent551562cd54f06db6e96e6f8d8986bc08a27c7d8a (diff)
downloadopenshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.tar.gz
openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.tar.bz2
openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.tar.xz
openshift-8fc2fe0b7ecf71b675158eabcc00a3a14218abe2.zip
Removed cloud.rb and it's associated libraries as it's no longer used. Also removed etcd role.
Diffstat (limited to 'lib/launch_helper.rb')
-rw-r--r--lib/launch_helper.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/launch_helper.rb b/lib/launch_helper.rb
deleted file mode 100644
index 0fe5ea6dc..000000000
--- a/lib/launch_helper.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-module OpenShift
- module Ops
- class LaunchHelper
- MYDIR = File.expand_path(File.dirname(__FILE__))
-
- def self.expand_name(name)
- return [name] unless name =~ /^([a-zA-Z0-9\-]+)\{(\d+)-(\d+)\}$/
-
- # Regex matched, so grab the values
- start_num = $2
- end_num = $3
-
- retval = []
- start_num.upto(end_num) do |i|
- retval << "#{$1}#{i}"
- end
-
- return retval
- end
-
- def self.get_gce_host_types()
- return Dir.glob("#{MYDIR}/../playbooks/gce/*").map { |d| File.basename(d) }
- end
-
- def self.get_aws_host_types()
- return Dir.glob("#{MYDIR}/../playbooks/aws/*").map { |d| File.basename(d) }
- end
- end
- end
-end