Browse Source

fixed cluster.sh to only run minion and master creation once, and to use -c if there are multiple needed. Also added nicer output.

Thomas Wiest 10 years ago
parent
commit
ccc72c0792
3 changed files with 8 additions and 17 deletions
  1. 6 15
      cluster.sh
  2. 1 1
      lib/aws_command.rb
  3. 1 1
      lib/gce_command.rb

+ 6 - 15
cluster.sh

@@ -20,14 +20,10 @@ EOT
 }
 # @formatter:on
 
-function create_cluser {
-    for (( i = 0; i < $MASTERS; i ++ )); do
-        ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MASTER_PLAYBOOK
-    done
+function create_cluster {
+    ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MASTER_PLAYBOOK -c $MASTERS
 
-    for (( i = 0; i < $MINIONS; i ++ )); do
-        ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MINION_PLAYBOOK
-    done
+    ./cloud.rb "${PROVIDER}" launch -e "${ENV}" --type=$MINION_PLAYBOOK -c $MINIONS
 
     update_cluster
 
@@ -35,13 +31,8 @@ function create_cluser {
 }
 
 function update_cluster {
-    for (( i = 0; i < $MASTERS; i ++ )); do
-        ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MASTER_PLAYBOOK
-    done
-
-    for (( i = 0; i < $MINIONS; i ++ )); do
-        ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MINION_PLAYBOOK
-    done
+    ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MASTER_PLAYBOOK
+    ./cloud.rb "${PROVIDER}" config -e "${ENV}" --type=$MINION_PLAYBOOK
 }
 
 function terminate_cluster {
@@ -69,7 +60,7 @@ case "${1}" in
     'create')
         [ -z "${2:-}" ] && (usage; exit 1)
         ENV="${2}"
-        create_cluser ;;
+        create_cluster ;;
     'update')
         [ -z "${2:-}" ] && (usage; exit 1)
         ENV="${2}"

+ 1 - 1
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

+ 1 - 1
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")