VCA scripts added. New host script clean_container to stop and delete an MDG container
[osm/devops.git] / jenkins / VCA / start_build
1 #!/bin/bash
2 #   Copyright 2016 Telefónica Investigación y Desarrollo S.A.U.
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 # 20 Sep 2016 -- Gerardo Garcia -- adapted from template
17
18
19 INFO "installing packages"
20 apt update
21 lxd init --auto
22 lxd waitready
23 systemctl stop lxd-bridge
24 systemctl --system daemon-reload
25 cat <<EOF > /etc/default/lxd-bridge
26 USE_LXD_BRIDGE="true"
27 LXD_BRIDGE="lxdbr0"
28 UPDATE_PROFILE="true"
29 LXD_CONFILE=""
30 LXD_DOMAIN="lxd"
31 LXD_IPV4_ADDR="10.44.127.1"
32 LXD_IPV4_NETMASK="255.255.255.0"
33 LXD_IPV4_NETWORK="10.44.127.1/24"
34 LXD_IPV4_DHCP_RANGE="10.44.127.2,10.44.127.254"
35 LXD_IPV4_DHCP_MAX="252"
36 LXD_IPV4_NAT="true"
37 LXD_IPV6_ADDR=""
38 LXD_IPV6_MASK=""
39 LXD_IPV6_NETWORK=""
40 LXD_IPV6_NAT="false"
41 LXD_IPV6_PROXY="false"
42 EOF
43
44 systemctl enable lxd-bridge
45 systemctl start lxd-bridge
46 lxc image copy ubuntu:16.04 local: --alias ubuntu-xenial
47 apt install -y juju
48 juju bootstrap juju localhost
49
50 RC=0
51
52 INFO "done, RC=$RC"
53 exit $RC
54
55