diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-02-28 13:29:26 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-02-28 13:29:26 -0500 |
commit | bc8069a4173db4d66a9ed79ca6c6b93039da60fa (patch) | |
tree | 88bab130d8e501ad2b48f908c17e928b1773c4b6 | |
parent | 98d53c4119170bf87e635207152ac180a5420e21 (diff) | |
parent | e63eec40e93b292f1446148b2759304dd257c771 (diff) | |
download | openshift-bc8069a4173db4d66a9ed79ca6c6b93039da60fa.tar.gz openshift-bc8069a4173db4d66a9ed79ca6c6b93039da60fa.tar.bz2 openshift-bc8069a4173db4d66a9ed79ca6c6b93039da60fa.tar.xz openshift-bc8069a4173db4d66a9ed79ca6c6b93039da60fa.zip |
Merge pull request #80 from detiber/supportedEnvs
add jdetiber to list of SUPPORTED_ENVS
-rw-r--r-- | lib/aws_command.rb | 2 | ||||
-rw-r--r-- | lib/gce_command.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/aws_command.rb b/lib/aws_command.rb index 44df05e6a..0942c6e04 100644 --- a/lib/aws_command.rb +++ b/lib/aws_command.rb @@ -7,7 +7,7 @@ module OpenShift module Ops class AwsCommand < Thor # WARNING: we do not currently support environments with hyphens in the name - SUPPORTED_ENVS = %w(prod stg int ops twiest gshipley kint test jhonce amint tdint lint) + SUPPORTED_ENVS = %w(prod stg int ops twiest gshipley kint test jhonce amint tdint lint jdetiber) option :type, :required => true, :enum => LaunchHelper.get_aws_host_types, :desc => 'The host type of the new instances.' diff --git a/lib/gce_command.rb b/lib/gce_command.rb index b7ebee18e..cec1b9c2b 100644 --- a/lib/gce_command.rb +++ b/lib/gce_command.rb @@ -10,7 +10,7 @@ module OpenShift module Ops class GceCommand < Thor # WARNING: we do not currently support environments with hyphens in the name - SUPPORTED_ENVS = %w(prod stg int twiest gshipley kint test jhonce amint tdint lint) + SUPPORTED_ENVS = %w(prod stg int twiest gshipley kint test jhonce amint tdint lint jdetiber) option :type, :required => true, :enum => LaunchHelper.get_gce_host_types, :desc => 'The host type of the new instances.' |