Fix perms and sed for bridge_name
[releng.git] / jjb / infra / bifrost-verify.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB and others.
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 -o errexit
11 set -o nounset
12 set -o pipefail
13
14 trap fix_ownership EXIT
15
16 function fix_ownership() {
17     if [ -z "${JOB_URL+x}" ]; then
18         echo "Not running as part of Jenkins. Handle the logs manually."
19     else
20         sudo chown -R jenkins:jenkins $WORKSPACE
21         sudo chown -R jenkins:jenkins ${HOME}/.cache
22     fi
23 }
24
25 # check distro to see if we support it
26 if [[ ! "$DISTRO" =~ (trusty|centos7|suse) ]]; then
27     echo "Distro $DISTRO is not supported!"
28     exit 1
29 fi
30
31 # remove previously cloned repos
32 sudo /bin/rm -rf /opt/bifrost /opt/puppet-infracloud /opt/stack /opt/releng
33
34 # Fix up permissions
35 fix_ownership
36
37 # clone all the repos first and checkout the patch afterwards
38 sudo git clone https://git.openstack.org/openstack/bifrost /opt/bifrost
39 sudo git clone https://git.openstack.org/openstack-infra/puppet-infracloud /opt/puppet-infracloud
40 sudo git clone https://gerrit.opnfv.org/gerrit/releng /opt/releng
41
42 # checkout the patch
43 cd $CLONE_LOCATION
44 sudo git fetch $PROJECT_REPO $GERRIT_REFSPEC && sudo git checkout FETCH_HEAD
45
46 # combine opnfv and upstream scripts/playbooks
47 sudo /bin/cp -rf /opt/releng/prototypes/bifrost/* /opt/bifrost/
48
49 # place bridge creation file on the right path
50 sudo mkdir -p /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt
51 sudo cp /opt/puppet-infracloud/templates/bifrost/create_bridge.py.erb /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt/create_bridge.py
52
53 # replace bridge name
54 sudo sed -i s/"<%= @bridge_name -%>"/br_opnfv/g /opt/puppet-infracloud/files/elements/infra-cloud-bridge/static/opt/create_bridge.py
55
56 # cleanup remnants of previous deployment
57 cd /opt/bifrost
58 sudo -E ./scripts/destroy-env.sh
59
60 # provision 3 VMs; jumphost, controller, and compute
61 cd /opt/bifrost
62 sudo -E ./scripts/test-bifrost-deployment.sh
63
64 # list the provisioned VMs
65 cd /opt/bifrost
66 source env-vars
67 ironic node-list
68 virsh list