Get tht from github instead of rpm
[apex.git] / build / undercloud.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -e
11 source ./cache.sh
12 source ./variables.sh
13
14 populate_cache "$rdo_images_uri/undercloud.qcow2"
15 if [ ! -d images ]; then mkdir images/; fi
16 cp -f cache/undercloud.qcow2 images/
17
18 #Adding OpenStack packages to undercloud
19 pushd images > /dev/null
20
21 # install the packages above and enabling ceph to live on the controller
22 # OpenWSMan package update supports the AMT Ironic driver for the TealBox
23 LIBGUESTFS_BACKEND=direct virt-customize \
24     --run-command "sed -i '/ControllerEnableCephStorage/c\\  ControllerEnableCephStorage: true' /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml" \
25     --run-command "sed -i '/  \$enable_ceph = /c\\  \$enable_ceph = true' /usr/share/openstack-tripleo-heat-templates/puppet/manifests/overcloud_controller_pacemaker.pp" \
26     --run-command "sed -i '/  \$enable_ceph = /c\\  \$enable_ceph = true' /usr/share/openstack-tripleo-heat-templates/puppet/manifests/overcloud_controller.pp" \
27     --run-command "curl http://download.opensuse.org/repositories/Openwsman/CentOS_CentOS-7/Openwsman.repo > /etc/yum.repos.d/wsman.repo" \
28     --run-command "yum update -y openwsman*" \
29     --run-command "cp /usr/share/instack-undercloud/undercloud.conf.sample /home/stack/undercloud.conf && chown stack:stack /home/stack/undercloud.conf" \
30     --upload ../opnfv-environment.yaml:/home/stack/ \
31     -a undercloud.qcow2
32
33 # Use apex tripleo-heat-templates fork
34 PR_NUMBER=$(git log -1 | grep 'opnfv-tht-pr:' | grep -o '[0-9]*')
35 REF="stable/colorado"
36 REPO="https://github.com/trozet/opnfv-tht"
37
38 if [ "$PR_NUMBER" != "" ]; then
39   echo "Using pull request $PR_NUMBER from $REPO"
40   # Source credentials since we are rate limited to 60/day
41   GHCREDS=""
42   if [ -f ~/.githubcreds ]; then
43     source ~/.githubcreds
44     GHCREDS=" -u $GHUSERNAME:$GHACCESSTOKEN"
45   fi
46
47   PR=$(curl $GHCREDS https://api.github.com/repos/trozet/opnfv-tht/pulls/$PR_NUMBER)
48
49   # Do not pull from merged branches
50   MERGED=$(echo $PR | python -c "import sys,json; print json.load(sys.stdin)['head']['merged']")
51   if [ "$MERGED" == false ]; then
52     REF=$(echo $PR | python -c "import sys,json; print json.load(sys.stdin)['head']['ref']")
53     REPO=$(echo $PR | python -c "import sys,json; print json.load(sys.stdin)['head']['repo']['git_url']")
54   fi
55 fi
56
57 rm -rf opnfv-tht
58 git clone $REPO -b $REF opnfv-tht
59
60 pushd opnfv-tht > /dev/null
61 git archive --format=tar.gz --prefix=openstack-tripleo-heat-templates/ HEAD > ../opnfv-tht.tar.gz
62 popd > /dev/null
63 LIBGUESTFS_BACKEND=direct virt-customize --upload opnfv-tht.tar.gz:/usr/share \
64                                          --run-command "cd /usr/share && rm -rf openstack-tripleo-heat-templates && tar xzf opnfv-tht.tar.gz" \
65                                          -a undercloud.qcow2
66
67 popd > /dev/null
68