blob: 1591739ac2a1f10f6643c238e30737acdcf6a6cc [file] [log] [blame]
Mike Marchetti6930bc02017-05-31 16:33:02 -04001#!/bin/bash
2# Copyright 2017
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# 01 May 2017 -- Michael Marchetti -- adapted from template
17#
18
19HERE=$(realpath $(dirname $0))
20OSM_JENKINS=$(dirname $HERE)
21. $OSM_JENKINS/common/all_funcs
Mike Marchetti8343e3f2017-06-30 15:12:26 -040022. $OSM_JENKINS/common/install_common
Mike Marchetti6930bc02017-05-31 16:33:02 -040023
24INFO "Installing packages"
25apt-get update
26
27INFO "Configuring LXD"
28# ZFS doesn't work inside a nested container. ZFS should be configured in the host LXD.
29lxd init --auto
30lxd waitready
31systemctl stop lxd-bridge
32systemctl --system daemon-reload
33cat <<EOF > /etc/default/lxd-bridge
34USE_LXD_BRIDGE="true"
35LXD_BRIDGE="lxdbr0"
36UPDATE_PROFILE="true"
37LXD_CONFILE=""
38LXD_DOMAIN="lxd"
39LXD_IPV4_ADDR="10.44.126.1"
40LXD_IPV4_NETMASK="255.255.255.0"
41LXD_IPV4_NETWORK="10.44.126.1/24"
42LXD_IPV4_DHCP_RANGE="10.44.126.2,10.44.126.254"
43LXD_IPV4_DHCP_MAX="252"
44LXD_IPV4_NAT="true"
45LXD_IPV6_ADDR=""
46LXD_IPV6_MASK=""
47LXD_IPV6_NETWORK=""
48LXD_IPV6_NAT="false"
49LXD_IPV6_PROXY="false"
50EOF
51
52systemctl enable lxd-bridge
53systemctl start lxd-bridge
54
55apt-get install -y python-pip python python-pycurl charm-tools python-pytest
56
Mike Marchetti8343e3f2017-06-30 15:12:26 -040057apt install -y python-osmclient
Mike Marchetti6930bc02017-05-31 16:33:02 -040058
Mike Marchetti425f8ce2017-06-15 13:02:16 -040059export OSM_USE_LOCAL_DEVOPS=true
60devops/installers/install_osm.sh --test $*
Mike Marchetti6930bc02017-05-31 16:33:02 -040061RC=$?
62
63# workaround. for upload packages, lxdbr0 needs to be promiscuous
64# as the upload calls back to the UI server so the lxdbr0 needs
65# to operate as a bridge
66ifconfig lxdbr0 promisc
67
68if [ $RC == 0 ]; then
69 # success. find all the resulting containers
70 . devops/installers/export_ips
71
72 TO_ADD="export OSM_HOSTNAME=$SO_CONTAINER_IP"
73 grep -q OSM_HOSTNAME ~/.bashrc && sed -i "s/.*OSM_HOSTNAME.*/$TO_ADD/" ~/.bashrc || echo -e "$TO_ADD\n$(cat ~/.bashrc)" > ~/.bashrc
Mike Marchetti8343e3f2017-06-30 15:12:26 -040074 TO_ADD="export OSM_RO_HOSTNAME=$RO_CONTAINER_IP"
75 grep -q OSM_RO_HOSTNAME ~/.bashrc && sed -i "s/.*OSM_RO_HOSTNAME.*/$TO_ADD/" ~/.bashrc || echo -e "$TO_ADD\n$(cat ~/.bashrc)" > ~/.bashrc
Mike Marchetti6930bc02017-05-31 16:33:02 -040076fi
77
78INFO "done, RC=$RC"
79exit $RC