blob: ca77c90d78c7d7007c07ec51dd97112c25e58525 [file] [log] [blame]
garciadeblas8fed1082022-08-29 11:25:02 +02001#!/bin/bash
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
16set +eux
17
18function usage(){
19 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
20 echo -e "usage: $0 [OPTIONS]"
21 echo -e "Install Juju for OSM"
22 echo -e " OPTIONS"
23 echo -e " -h / --help: print this help"
24 echo -e " -D <devops path> use local devops installation path"
25 echo -e " -H <VCA host> use specific juju host controller IP"
26 echo -e " -S <VCA secret> use VCA/juju secret key"
27 echo -e " -P <VCA pubkey> use VCA/juju public key file"
28 echo -e " -l: LXD cloud yaml file"
29 echo -e " -L: LXD credentials yaml file"
30 echo -e " -K: Specifies the name of the controller to use - The controller must be already bootstrapped"
31 echo -e " --debug: debug mode"
32 echo -e " --cachelxdimages: cache local lxd images, create cronjob for that cache (will make installation longer)"
33 echo -e " --nojuju: do not juju, assumes already installed"
34 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
35}
36
37function install_lxd() {
38 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
39 # Apply sysctl production values for optimal performance
40 sudo cp ${OSM_DEVOPS}/installers/60-lxd-production.conf /etc/sysctl.d/60-lxd-production.conf
41 sudo sysctl --system
42
43 # Install LXD snap
44 sudo apt-get remove --purge -y liblxc1 lxc-common lxcfs lxd lxd-client
45 snap info lxd | grep installed > /dev/null
46 if [ $? -eq 0 ]; then
47 sudo snap refresh lxd --channel $LXD_VERSION/stable
48 else
49 sudo snap install lxd --channel $LXD_VERSION/stable
50 fi
51
garciadeblas45ab04c2022-11-25 10:59:03 +010052 # Get default iface, IP and MTU
53 if [ -n "${OSM_DEFAULT_IF}" ]; then
54 OSM_DEFAULT_IF=$(ip route list|awk '$1=="default" {print $5; exit}')
55 [ -z "${OSM_DEFAULT_IF}" ] && OSM_DEFAULT_IF=$(route -n |awk '$1~/^0.0.0.0/ {print $8; exit}')
56 [ -z "${OSM_DEFAULT_IF}" ] && FATAL "Not possible to determine the interface with the default route 0.0.0.0"
57 fi
58 DEFAULT_MTU=$(ip addr show ${OSM_DEFAULT_IF} | perl -ne 'if (/mtu\s(\d+)/) {print $1;}')
59 OSM_DEFAULT_IP=`ip -o -4 a s ${OSM_DEFAULT_IF} |awk '{split($4,a,"/"); print a[1]; exit}'`
60 [ -z "$OSM_DEFAULT_IP" ] && FATAL "Not possible to determine the IP address of the interface with the default route"
61
garciadeblas8fed1082022-08-29 11:25:02 +020062 # Configure LXD
63 sudo usermod -a -G lxd `whoami`
garciadeblas45ab04c2022-11-25 10:59:03 +010064 cat ${OSM_DEVOPS}/installers/lxd-preseed.conf | sed 's/^config: {}/config:\n core.https_address: '$OSM_DEFAULT_IP':8443/' | sg lxd -c "lxd init --preseed"
garciadeblas8fed1082022-08-29 11:25:02 +020065 sg lxd -c "lxd waitready"
garciadeblas8fed1082022-08-29 11:25:02 +020066 sg lxd -c "lxc profile device set default eth0 mtu $DEFAULT_MTU"
67 sg lxd -c "lxc network set lxdbr0 bridge.mtu $DEFAULT_MTU"
68 # sudo systemctl stop lxd-bridge
69 # sudo systemctl --system daemon-reload
70 # sudo systemctl enable lxd-bridge
71 # sudo systemctl start lxd-bridge
garciadeblasfa3eb332022-11-15 14:11:56 +010072
73 # Configure LXD to work behind a proxy
74 if [ -n "${OSM_BEHIND_PROXY}" ] ; then
75 [ -n "${HTTP_PROXY}" ] && sg lxd -c "lxc config set core.proxy_http $HTTP_PROXY"
76 [ -n "${HTTPS_PROXY}" ] && sg lxd -c "lxc config set core.proxy_https $HTTPS_PROXY"
77 [ -n "${NO_PROXY}" ] && sg lxd -c "lxc config set core.proxy_ignore_hosts $NO_PROXY"
78 fi
79
garciadeblas8fed1082022-08-29 11:25:02 +020080 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
81}
82
83DEBUG_INSTALL=""
84LXD_VERSION=5.0
85OSM_DEVOPS=
garciadeblasfa3eb332022-11-15 14:11:56 +010086OSM_BEHIND_PROXY=""
garciadeblas8fed1082022-08-29 11:25:02 +020087
88# main
garciadeblasfa3eb332022-11-15 14:11:56 +010089while getopts ":D:d:i:-: hP" o; do
garciadeblas8fed1082022-08-29 11:25:02 +020090 case "${o}" in
91 i)
garciadeblas45ab04c2022-11-25 10:59:03 +010092 OSM_DEFAULT_IF="${OPTARG}"
garciadeblas8fed1082022-08-29 11:25:02 +020093 ;;
94 d)
95 OSM_DOCKER_WORK_DIR="${OPTARG}"
96 ;;
97 D)
98 OSM_DEVOPS="${OPTARG}"
99 ;;
garciadeblasfa3eb332022-11-15 14:11:56 +0100100 P)
101 OSM_BEHIND_PROXY="y"
102 ;;
garciadeblas8fed1082022-08-29 11:25:02 +0200103 -)
104 [ "${OPTARG}" == "help" ] && usage && exit 0
105 [ "${OPTARG}" == "debug" ] && DEBUG_INSTALL="y" && continue
106 echo -e "Invalid option: '--$OPTARG'\n" >&2
107 exit 1
108 ;;
109 :)
110 echo "Option -$OPTARG requires an argument" >&2
111 exit 1
112 ;;
113 \?)
114 echo -e "Invalid option: '-$OPTARG'\n" >&2
115 exit 1
116 ;;
117 h)
118 usage && exit 0
119 ;;
120 *)
121 exit 1
122 ;;
123 esac
124done
125
126source $OSM_DEVOPS/common/logging
127source $OSM_DEVOPS/common/track
128
129echo "DEBUG_INSTALL=$DEBUG_INSTALL"
garciadeblasfa3eb332022-11-15 14:11:56 +0100130echo "OSM_BEHIND_PROXY=$OSM_BEHIND_PROXY"
garciadeblas45ab04c2022-11-25 10:59:03 +0100131echo "OSM_DEFAULT_IF=$OSM_DEFAULT_IF"
garciadeblas8fed1082022-08-29 11:25:02 +0200132echo "OSM_DEVOPS=$OSM_DEVOPS"
133
134[ -z "$INSTALL_NOJUJU" ] && install_lxd
135track juju juju_install_ok
136