blob: 960531de07e3a92f4dbb5d4562ca1cb4b03961f3 [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}')
garciadeblas60036322023-06-02 11:09:39 +020056 [ -z "${OSM_DEFAULT_IF}" ] && FATAL_TRACK lxd "Not possible to determine the interface with the default route 0.0.0.0"
garciadeblas45ab04c2022-11-25 10:59:03 +010057 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}'`
garciadeblas60036322023-06-02 11:09:39 +020060 [ -z "$OSM_DEFAULT_IP" ] && FATAL_TRACK lxd "Not possible to determine the IP address of the interface with the default route"
garciadeblas45ab04c2022-11-25 10:59:03 +010061
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"
garciadeblasfa3eb332022-11-15 14:11:56 +010066
67 # Configure LXD to work behind a proxy
68 if [ -n "${OSM_BEHIND_PROXY}" ] ; then
69 [ -n "${HTTP_PROXY}" ] && sg lxd -c "lxc config set core.proxy_http $HTTP_PROXY"
70 [ -n "${HTTPS_PROXY}" ] && sg lxd -c "lxc config set core.proxy_https $HTTPS_PROXY"
71 [ -n "${NO_PROXY}" ] && sg lxd -c "lxc config set core.proxy_ignore_hosts $NO_PROXY"
72 fi
73
garciadeblas8fed1082022-08-29 11:25:02 +020074 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
75}
76
77DEBUG_INSTALL=""
78LXD_VERSION=5.0
79OSM_DEVOPS=
garciadeblasfa3eb332022-11-15 14:11:56 +010080OSM_BEHIND_PROXY=""
garciadeblas8fed1082022-08-29 11:25:02 +020081
82# main
garciadeblasfa3eb332022-11-15 14:11:56 +010083while getopts ":D:d:i:-: hP" o; do
garciadeblas8fed1082022-08-29 11:25:02 +020084 case "${o}" in
85 i)
garciadeblas45ab04c2022-11-25 10:59:03 +010086 OSM_DEFAULT_IF="${OPTARG}"
garciadeblas8fed1082022-08-29 11:25:02 +020087 ;;
88 d)
89 OSM_DOCKER_WORK_DIR="${OPTARG}"
90 ;;
91 D)
92 OSM_DEVOPS="${OPTARG}"
93 ;;
garciadeblasfa3eb332022-11-15 14:11:56 +010094 P)
95 OSM_BEHIND_PROXY="y"
96 ;;
garciadeblas8fed1082022-08-29 11:25:02 +020097 -)
98 [ "${OPTARG}" == "help" ] && usage && exit 0
99 [ "${OPTARG}" == "debug" ] && DEBUG_INSTALL="y" && continue
100 echo -e "Invalid option: '--$OPTARG'\n" >&2
101 exit 1
102 ;;
103 :)
104 echo "Option -$OPTARG requires an argument" >&2
105 exit 1
106 ;;
107 \?)
108 echo -e "Invalid option: '-$OPTARG'\n" >&2
109 exit 1
110 ;;
111 h)
112 usage && exit 0
113 ;;
114 *)
115 exit 1
116 ;;
117 esac
118done
119
120source $OSM_DEVOPS/common/logging
121source $OSM_DEVOPS/common/track
122
123echo "DEBUG_INSTALL=$DEBUG_INSTALL"
garciadeblasfa3eb332022-11-15 14:11:56 +0100124echo "OSM_BEHIND_PROXY=$OSM_BEHIND_PROXY"
garciadeblas45ab04c2022-11-25 10:59:03 +0100125echo "OSM_DEFAULT_IF=$OSM_DEFAULT_IF"
garciadeblas8fed1082022-08-29 11:25:02 +0200126echo "OSM_DEVOPS=$OSM_DEVOPS"
127
128[ -z "$INSTALL_NOJUJU" ] && install_lxd
garciadeblas5671dce2023-05-18 11:28:16 +0200129track prereq lxd_install_ok
garciadeblas8fed1082022-08-29 11:25:02 +0200130