summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2014-10-30 17:13:47 -0400
committerThomas Wiest <twiest@redhat.com>2014-10-30 17:14:19 -0400
commitccc72c0792f14c7a26513226746d8a18d3033e08 (patch)
treefc1522606d3eaa7ed33d1dc547e6db7b16d5ae17 /lib
parentc292781afdcb57ee097f0840342b19a626d2a2c4 (diff)
downloadopenshift-ccc72c0792f14c7a26513226746d8a18d3033e08.tar.gz
openshift-ccc72c0792f14c7a26513226746d8a18d3033e08.tar.bz2
openshift-ccc72c0792f14c7a26513226746d8a18d3033e08.tar.xz
openshift-ccc72c0792f14c7a26513226746d8a18d3033e08.zip
fixed cluster.sh to only run minion and master creation once, and to use -c if there are multiple needed. Also added nicer output.
Diffstat (limited to 'lib')
-rw-r--r--lib/aws_command.rb2
-rw-r--r--lib/gce_command.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/aws_command.rb b/lib/aws_command.rb
index b8ecb89ac..865901585 100644
--- a/lib/aws_command.rb
+++ b/lib/aws_command.rb
@@ -41,7 +41,7 @@ module OpenShift
ah.extra_vars['oo_new_inst_tags'].merge!(AwsHelper.generate_env_host_type_tag(options[:env], options[:type]))
puts
- puts 'Creating instance(s) in AWS...'
+ puts "Creating #{options[:count]} #{options[:type]} instance(s) in AWS..."
ah.ignore_bug_6407
# Make sure we're completely up to date before launching
diff --git a/lib/gce_command.rb b/lib/gce_command.rb
index ce3737a19..e8e00b746 100644
--- a/lib/gce_command.rb
+++ b/lib/gce_command.rb
@@ -42,7 +42,7 @@ module OpenShift
ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_env_host_type_tag(options[:env], options[:type])
puts
- puts 'Creating instance(s) in GCE...'
+ puts "Creating #{options[:count]} #{options[:type]} instance(s) in GCE..."
ah.ignore_bug_6407
ah.run_playbook("playbooks/gce/#{options[:type]}/launch.yml")