diff options
author | Thomas Wiest <twiest@redhat.com> | 2014-10-22 11:12:46 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2014-10-23 12:51:52 -0400 |
commit | 5f9c7eb2d2ad44776d33197857dcd0afe693b5f5 (patch) | |
tree | 22a39c5589aa3f6a2a01f185041258e4fd69dea6 /lib/launch_helper.rb | |
parent | 1057c69acdaf47e2bcd4b395069e3bc1bd9eec88 (diff) | |
download | openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.gz openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.bz2 openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.tar.xz openshift-5f9c7eb2d2ad44776d33197857dcd0afe693b5f5.zip |
Added atomic aws host to cloud.rb
Diffstat (limited to 'lib/launch_helper.rb')
-rw-r--r--[-rwxr-xr-x] | lib/launch_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/launch_helper.rb b/lib/launch_helper.rb index 2033f3ddb..0fe5ea6dc 100755..100644 --- a/lib/launch_helper.rb +++ b/lib/launch_helper.rb @@ -21,6 +21,10 @@ module OpenShift 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 |