The instackenv has 5 nodes in it but we were only putting two
back into the pool. This patch puts all 5 back in the pool
but doesn't throw the ha flags
JIRA: APEX-45
Change-Id: I1c539eafca9ed2f674a1a954f75c175fe9efc5bb
 #green=`tput setaf 2`
 
 vm_index=4
+ha_enabled="TRUE"
 declare -i CNT
 declare UNDERCLOUD
 
 ##params: none
 function undercloud_prep_overcloud_deploy {
   # check if HA is enabled
-  if [ "$vm_index" -gt 1 ]; then
+  if [ $ha_enabled == "TRUE" ]; then
      DEPLOY_OPTIONS+=" --control-scale 3 --compute-scale 2"
      DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/puppet-pacemaker.yaml"
      DEPLOY_OPTIONS+="  --ntp-server pool.ntp.org"
                 shift 2
             ;;
         -n|--no-ha )
-                vm_index=1
+               ha_enabled="FALSE"
                 shift 1
            ;;
         *)