summaryrefslogtreecommitdiffstats
path: root/ci/deploy.sh
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2015-10-28 15:17:20 -0400
committerTim Rozet <trozet@redhat.com>2015-11-02 16:18:29 -0500
commitb4781ad203c1905894f53f9ef931ae60dfa1bc70 (patch)
tree20013316d0aebca2aaa51e0d01eae3d1bf87e834 /ci/deploy.sh
parent7dfb433c9dd10ef759e46fc655e0958b3baf2e82 (diff)
Adds HA support to deploy
Defaults the deploy to use HA and adds new param for using non-HA. JIRA: APEX-40 Change-Id: Ib3fc8b31ea13a3c590ceaa875197b4b9c1bb55a1 Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-xci/deploy.sh21
1 files changed, 18 insertions, 3 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index 482c1bff..c707e73d 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -24,7 +24,7 @@ set -e
#red=`tput setaf 1`
#green=`tput setaf 2`
-vm_index=1
+vm_index=4
declare -i CNT
declare UNDERCLOUD
@@ -168,9 +168,14 @@ function setup_instack_vm {
ssh -T ${SSH_OPTIONS[@]} "root@$UNDERCLOUD" "restorecon -r /home/stack"
}
+##Create virtual nodes in virsh
+##params: none
function setup_virtual_baremetal {
for i in $(seq 0 $vm_index); do
if ! virsh list --all | grep baremetalbrbm_${i} > /dev/null; then
+ if [ ! -e $CONFIG/baremetalbrbm_${i}.xml ]; then
+ define_virtual_node baremetalbrbm_${i}
+ fi
virsh define $CONFIG/baremetalbrbm_${i}.xml
else
echo "Found Baremetal ${i} VM, using existing VM"
@@ -180,7 +185,7 @@ function setup_virtual_baremetal {
}
##Copy over the glance images and instack json file
-##params: none
+##params: none
function copy_materials {
scp ${SSH_OPTIONS[@]} $RESOURCES/deploy-ramdisk-ironic.initramfs "stack@$UNDERCLOUD":
@@ -232,8 +237,14 @@ ssh -T ${SSH_OPTIONS[@]} "root@$UNDERCLOUD" "cat /home/stack/.ssh/id_rsa.pub" >>
}
##preping it for deployment and launch the deploy
-##params: none
+##params: none
function undercloud_prep_overcloud_deploy {
+ # check if HA is enabled
+ if [ "$vm_index" -gt 1 ]; 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"
+ fi
ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
source stackrc
@@ -302,6 +313,10 @@ parse_cmdline() {
floating_ip_count=$2
shift 2
;;
+ -n|--no_ha )
+ vm_index=1
+ shift 1
+ ;;
*)
display_usage
exit 1