blob: 716b728b78fbaa182a6649ebe53f34484635943e [file] [log] [blame]
Mike Marchetti03fcdf42017-05-30 13:13:56 -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
22
23INFO "Installing packages"
24apt-get update
25
26INFO "Configuring LXD"
27# ZFS doesn't work inside a nested container. ZFS should be configured in the host LXD.
28lxd init --auto
29lxd waitready
30systemctl stop lxd-bridge
31systemctl --system daemon-reload
32cat <<EOF > /etc/default/lxd-bridge
33USE_LXD_BRIDGE="true"
34LXD_BRIDGE="lxdbr0"
35UPDATE_PROFILE="true"
36LXD_CONFILE=""
37LXD_DOMAIN="lxd"
38LXD_IPV4_ADDR="10.44.126.1"
39LXD_IPV4_NETMASK="255.255.255.0"
40LXD_IPV4_NETWORK="10.44.126.1/24"
41LXD_IPV4_DHCP_RANGE="10.44.126.2,10.44.126.254"
42LXD_IPV4_DHCP_MAX="252"
43LXD_IPV4_NAT="true"
44LXD_IPV6_ADDR=""
45LXD_IPV6_MASK=""
46LXD_IPV6_NETWORK=""
47LXD_IPV6_NAT="false"
48LXD_IPV6_PROXY="false"
49EOF
50
51systemctl enable lxd-bridge
52systemctl start lxd-bridge
53
54apt-get install -y python-pip python python-pycurl charm-tools python-pytest
55
56# TODO: use package when available on osm repo
57git clone https://osm.etsi.org/gerrit/osm/osmclient
58pip install osmclient/.
59
60devops/installers/install_osm.sh $*
61RC=$?
62
63INFO "done, RC=$RC"
64exit $RC