blob: 5eee02325cc94d0c442d3f19bcbe82da40da927c [file] [log] [blame]
garciadeblasd8bc5c32018-05-09 17:37:56 +02001#!/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
16function usage(){
17 echo -e "usage: $0 [OPTIONS]"
18 echo -e "Install OSM from binaries or source code (by default, from binaries)"
19 echo -e " OPTIONS"
garciadeblas7f1e1042020-11-30 14:07:03 +000020 echo -e " -h / --help: print this help"
21 echo -e " -y: do not prompt for confirmation, assumes yes"
garciadeblasd8bc5c32018-05-09 17:37:56 +020022 echo -e " -r <repo>: use specified repository name for osm packages"
23 echo -e " -R <release>: use specified release for osm binaries (deb packages, lxd images, ...)"
24 echo -e " -u <repo base>: use specified repository url for osm packages"
25 echo -e " -k <repo key>: use specified repository public key url"
26 echo -e " -b <refspec>: install OSM from source code using a specific branch (master, v2.0, ...) or tag"
27 echo -e " -b master (main dev branch)"
28 echo -e " -b v2.0 (v2.0 branch)"
29 echo -e " -b tags/v1.1.0 (a specific tag)"
30 echo -e " ..."
vijaynag8339ed22019-07-25 17:10:58 +053031 echo -e " -c <orchestrator> deploy osm services using container <orchestrator>. Valid values are <k8s> or <swarm>. If -c is not used then osm will be deployed using default orchestrator. When used with --uninstall, osm services deployed by the orchestrator will be uninstalled"
vijaynag4b57d462020-06-08 14:23:10 +000032 echo -e " -n <ui> install OSM with Next Gen UI. Valid values are <lwui> or <ngui>. If -n is not specified osm will be installed with light-ui. When used with uninstall, osm along with the UI specified will be uninstalled"
vijaynag8339ed22019-07-25 17:10:58 +053033 echo -e " -s <stack name> or <namespace> user defined stack name when installed using swarm or namespace when installed using k8s, default is osm"
Mike Marchettib8420852018-09-13 13:45:06 -040034 echo -e " -H <VCA host> use specific juju host controller IP"
35 echo -e " -S <VCA secret> use VCA/juju secret key"
garciadeblasaa3ddf42019-04-04 19:04:32 +020036 echo -e " -P <VCA pubkey> use VCA/juju public key file"
garciadeblas0c2f62b2019-05-29 15:23:19 +020037 echo -e " -C <VCA cacert> use VCA/juju CA certificate file"
Adam Israel5ddc97f2019-09-03 18:11:12 -040038 echo -e " -A <VCA apiproxy> use VCA/juju API proxy"
garciadeblas6c66abf2018-05-16 14:46:19 +020039 echo -e " --vimemu: additionally deploy the VIM emulator as a docker container"
40 echo -e " --elk_stack: additionally deploy an ELK docker stack for event logging"
magnussonl1bbe9452020-02-25 13:43:17 +010041 echo -e " --pla: install the PLA module for placement support"
garciadeblas7f1e1042020-11-30 14:07:03 +000042 echo -e " -m <MODULE>: install OSM but only rebuild or pull the specified docker images (LW-UI, NG-UI, NBI, LCM, RO, MON, POL, PLA, KAFKA, MONGO, PROMETHEUS, PROMETHEUS-CADVISOR, KEYSTONE-DB, NONE)"
romeromonser599d5e22020-03-06 10:23:29 +010043 echo -e " -o <ADDON>: ONLY (un)installs one of the addons (vimemu, elk_stack, k8s_monitor)"
Antonio Marsicoe3650fc2020-12-21 17:29:42 +010044 echo -e " -O <openrc file path/cloud name>: Install OSM to an OpenStack infrastructure. <openrc file/cloud name> is required. If a <cloud name> is used, the clouds.yaml file should be under ~/.config/openstack/ or /etc/openstack/"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +020045 echo -e " -N <openstack public network name/ID>: Public network name required to setup OSM to OpenStack"
Antonio Marsicoe3650fc2020-12-21 17:29:42 +010046 echo -e " -f <path to SSH public key>: Public SSH key to use to deploy OSM to OpenStack"
47 echo -e " -F <path to cloud-init file>: Cloud-Init userdata file to deploy OSM to OpenStack"
garciadeblase990f662018-05-18 11:43:39 +020048 echo -e " -D <devops path> use local devops installation path"
Mike Marchettib8420852018-09-13 13:45:06 -040049 echo -e " -w <work dir> Location to store runtime installation"
Mike Marchetti13d76c82018-09-19 15:00:36 -040050 echo -e " -t <docker tag> specify osm docker tag (default is latest)"
David Garcia79f4f532020-04-07 12:59:34 +020051 echo -e " -l: LXD cloud yaml file"
52 echo -e " -L: LXD credentials yaml file"
David Garcia404ae122020-04-28 11:47:55 +020053 echo -e " -K: Specifies the name of the controller to use - The controller must be already bootstrapped"
garciadeblas7f1e1042020-11-30 14:07:03 +000054 echo -e " -d <docker registry URL> use docker registry URL instead of dockerhub"
55 echo -e " -p <docker proxy URL> set docker proxy URL as part of docker CE configuration"
56 echo -e " -T <docker tag> specify docker tag for the modules specified with option -m"
David Garcia79f4f532020-04-07 12:59:34 +020057 echo -e " --nolxd: do not install and configure LXD, allowing unattended installations (assumes LXD is already installed and confifured)"
garciadeblasa3e26612018-05-30 17:58:55 +020058 echo -e " --nodocker: do not install docker, do not initialize a swarm (assumes docker is already installed and a swarm has been initialized)"
Mike Marchettib8420852018-09-13 13:45:06 -040059 echo -e " --nojuju: do not juju, assumes already installed"
60 echo -e " --nodockerbuild:do not build docker images (use existing locally cached images)"
61 echo -e " --nohostports: do not expose docker ports to host (useful for creating multiple instances of osm on the same host)"
62 echo -e " --nohostclient: do not install the osmclient"
garciadeblase990f662018-05-18 11:43:39 +020063 echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules"
64 echo -e " --source: install OSM from source code using the latest stable tag"
garciadeblasd8bc5c32018-05-09 17:37:56 +020065 echo -e " --develop: (deprecated, use '-b master') install OSM from source code using the master branch"
Mike Marchettida8a9c42018-10-01 15:25:15 -040066 echo -e " --pullimages: pull/run osm images from docker.io/opensourcemano"
romeromonser599d5e22020-03-06 10:23:29 +010067 echo -e " --k8s_monitor: install the OSM kubernetes monitoring with prometheus and grafana"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +020068 echo -e " --volume: create a VM volume when installing to OpenStack"
garciadeblasd8bc5c32018-05-09 17:37:56 +020069# echo -e " --reconfigure: reconfigure the modules (DO NOT change NAT rules)"
garciadeblasd8bc5c32018-05-09 17:37:56 +020070# echo -e " --update: update to the latest stable release or to the latest commit if using a specific branch"
71 echo -e " --showopts: print chosen options and exit (only for debugging)"
Dominik Fleischmann7a97a4c2020-06-04 10:52:05 +020072 echo -e " --charmed: Deploy and operate OSM with Charms on k8s"
73 echo -e " [--bundle <bundle path>]: Specify with which bundle to deploy OSM with charms (--charmed option)"
74 echo -e " [--k8s <kubeconfig path>]: Specify with which kubernetes to deploy OSM with charms (--charmed option)"
Dominik Fleischmannc57296f2020-06-09 11:45:08 +020075 echo -e " [--vca <name>]: Specifies the name of the controller to use - The controller must be already bootstrapped (--charmed option)"
76 echo -e " [--lxd <yaml path>]: Takes a YAML file as a parameter with the LXD Cloud information (--charmed option)"
Dominik Fleischmann7a97a4c2020-06-04 10:52:05 +020077 echo -e " [--lxd-cred <yaml path>]: Takes a YAML file as a parameter with the LXD Credentials information (--charmed option)"
78 echo -e " [--microstack]: Installs microstack as a vim. (--charmed option)"
Dominik Fleischmannc57296f2020-06-09 11:45:08 +020079 echo -e " [--ha]: Installs High Availability bundle. (--charmed option)"
beierlmf2782c52020-11-05 17:04:05 -050080 echo -e " [--tag]: Docker image tag. (--charmed option)"
81 echo -e " [--registry]: Docker registry with optional credentials as user:pass@hostname:port (--charmed option)"
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +010082
garciadeblasd8bc5c32018-05-09 17:37:56 +020083}
84
Mike Marchettib8420852018-09-13 13:45:06 -040085# takes a juju/accounts.yaml file and returns the password specific
Adam Israel8232e562018-11-21 16:47:45 -050086# for a controller. I wrote this using only bash tools to minimize
Mike Marchettib8420852018-09-13 13:45:06 -040087# additions of other packages
88function parse_juju_password {
89 password_file="${HOME}/.local/share/juju/accounts.yaml"
90 local controller_name=$1
91 local s='[[:space:]]*' w='[a-zA-Z0-9_-]*' fs=$(echo @|tr @ '\034')
92 sed -ne "s|^\($s\):|\1|" \
93 -e "s|^\($s\)\($w\)$s:$s[\"']\(.*\)[\"']$s\$|\1$fs\2$fs\3|p" \
94 -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $password_file |
95 awk -F$fs -v controller=$controller_name '{
96 indent = length($1)/2;
97 vname[indent] = $2;
98 for (i in vname) {if (i > indent) {delete vname[i]}}
99 if (length($3) > 0) {
100 vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
101 if (match(vn,controller) && match($2,"password")) {
102 printf("%s",$3);
103 }
104 }
105 }'
106}
107
Benjamin Diazba2cca92018-11-08 21:07:15 -0300108function generate_secret() {
109 head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32
110}
111
Mike Marchettib8420852018-09-13 13:45:06 -0400112function remove_volumes() {
vijaynag8339ed22019-07-25 17:10:58 +0530113 if [ -n "$KUBERNETES" ]; then
114 k8_volume=$1
115 echo "Removing ${k8_volume}"
116 $WORKDIR_SUDO rm -rf ${k8_volume}
117 else
118 stack=$1
garciadeblasac550f22019-12-11 11:17:06 +0100119 volumes="mongo_db mon_db osm_packages ro_db pol_db prom_db ro"
vijaynag8339ed22019-07-25 17:10:58 +0530120 for volume in $volumes; do
121 sg docker -c "docker volume rm ${stack}_${volume}"
122 done
123 fi
Mike Marchettib8420852018-09-13 13:45:06 -0400124}
125
126function remove_network() {
127 stack=$1
128 sg docker -c "docker network rm net${stack}"
129}
130
Dominik Fleischmann6c63e2d2019-11-29 12:25:38 +0100131function remove_iptables() {
132 stack=$1
133 if [ -z "$OSM_VCA_HOST" ]; then
134 OSM_VCA_HOST=`sg lxd -c "juju show-controller ${stack}"|grep api-endpoints|awk -F\' '{print $2}'|awk -F\: '{print $1}'`
135 [ -z "$OSM_VCA_HOST" ] && FATAL "Cannot obtain juju controller IP address"
136 fi
137
David Garcia26432d42019-12-11 12:22:35 +0100138 if [ -z "$DEFAULT_IP" ]; then
tierno7d8f12e2020-05-18 14:17:41 +0000139 DEFAULT_IF=$(ip route list|awk '$1=="default" {print $5; exit}')
140 [ -z "$DEFAULT_IF" ] && DEFAULT_IF=$(route -n |awk '$1~/^0.0.0.0/ {print $8; exit}')
David Garcia26432d42019-12-11 12:22:35 +0100141 [ -z "$DEFAULT_IF" ] && FATAL "Not possible to determine the interface with the default route 0.0.0.0"
142 DEFAULT_IP=`ip -o -4 a |grep ${DEFAULT_IF}|awk '{split($4,a,"/"); print a[1]}'`
143 [ -z "$DEFAULT_IP" ] && FATAL "Not possible to determine the IP address of the interface with the default route"
144 fi
145
146 if sudo iptables -t nat -C PREROUTING -p tcp -m tcp -d $DEFAULT_IP --dport 17070 -j DNAT --to-destination $OSM_VCA_HOST; then
147 sudo iptables -t nat -D PREROUTING -p tcp -m tcp -d $DEFAULT_IP --dport 17070 -j DNAT --to-destination $OSM_VCA_HOST
Dominik Fleischmann6c63e2d2019-11-29 12:25:38 +0100148 sudo netfilter-persistent save
149 fi
150}
151
garciadeblas5b857d32018-05-24 18:37:58 +0200152function remove_stack() {
153 stack=$1
garciadeblas5ef98212018-05-28 09:25:36 +0200154 if sg docker -c "docker stack ps ${stack}" ; then
garciadeblas5b857d32018-05-24 18:37:58 +0200155 echo -e "\nRemoving stack ${stack}" && sg docker -c "docker stack rm ${stack}"
156 COUNTER=0
157 result=1
158 while [ ${COUNTER} -lt 30 ]; do
159 result=$(sg docker -c "docker stack ps ${stack}" | wc -l)
160 #echo "Dockers running: $result"
161 if [ "${result}" == "0" ]; then
162 break
163 fi
164 let COUNTER=COUNTER+1
165 sleep 1
166 done
garciadeblasd8bc5c32018-05-09 17:37:56 +0200167 if [ "${result}" == "0" ]; then
garciadeblas5b857d32018-05-24 18:37:58 +0200168 echo "All dockers of the stack ${stack} were removed"
169 else
170 FATAL "Some dockers of the stack ${stack} could not be removed. Could not clean it."
garciadeblasd8bc5c32018-05-09 17:37:56 +0200171 fi
garciadeblas5b857d32018-05-24 18:37:58 +0200172 sleep 5
garciadeblasd8bc5c32018-05-09 17:37:56 +0200173 fi
garciadeblas5b857d32018-05-24 18:37:58 +0200174}
175
vijaynag8339ed22019-07-25 17:10:58 +0530176#removes osm deployments and services
177function remove_k8s_namespace() {
178 kubectl delete ns $1
179}
180
romeromonser599d5e22020-03-06 10:23:29 +0100181#removes helm only if there is nothing deployed in helm
182function remove_helm() {
183 if [ "$(helm ls -q)" == "" ] ; then
184 sudo helm reset --force
185 kubectl delete --namespace kube-system serviceaccount tiller
186 kubectl delete clusterrolebinding tiller-cluster-rule
187 sudo rm /usr/local/bin/helm
188 rm -rf $HOME/.helm
189 fi
190}
191
calvinosanc10c82da02020-08-17 11:45:15 +0200192function remove_crontab_job() {
193 crontab -l | grep -v '${OSM_DEVOPS}/installers/update-juju-lxc-images' | crontab -
194}
195
garciadeblas22385882020-05-08 10:40:20 +0000196#Uninstall osmclient
197function uninstall_osmclient() {
198 sudo apt-get remove --purge -y python-osmclient
199 sudo apt-get remove --purge -y python3-osmclient
200}
201
garciadeblas5b857d32018-05-24 18:37:58 +0200202#Uninstall lightweight OSM: remove dockers
203function uninstall_lightweight() {
garciadeblas282ff4e2018-07-10 09:16:30 +0200204 if [ -n "$INSTALL_ONLY" ]; then
205 if [ -n "$INSTALL_ELK" ]; then
206 echo -e "\nUninstalling OSM ELK stack"
207 remove_stack osm_elk
Mike Marchettib8420852018-09-13 13:45:06 -0400208 $WORKDIR_SUDO rm -rf $OSM_DOCKER_WORK_DIR/osm_elk
garciadeblas282ff4e2018-07-10 09:16:30 +0200209 fi
garciadeblas282ff4e2018-07-10 09:16:30 +0200210 else
211 echo -e "\nUninstalling OSM"
vijaynag8339ed22019-07-25 17:10:58 +0530212 if [ -n "$KUBERNETES" ]; then
garciadeblasb5a630f2020-03-05 18:32:16 +0000213 if [ -n "$INSTALL_K8S_MONITOR" ]; then
romeromonsere366b1a2019-11-19 19:49:26 +0100214 # uninstall OSM MONITORING
215 uninstall_k8s_monitoring
216 fi
vijaynag8339ed22019-07-25 17:10:58 +0530217 remove_k8s_namespace $OSM_STACK_NAME
218 else
219 remove_stack $OSM_STACK_NAME
220 remove_stack osm_elk
vijaynag8339ed22019-07-25 17:10:58 +0530221 fi
garciadeblas282ff4e2018-07-10 09:16:30 +0200222 echo "Now osm docker images and volumes will be deleted"
garciadeblas7f1e1042020-11-30 14:07:03 +0000223 # TODO: clean-up of images should take into account if other tags were used for specific modules
garciadeblas282ff4e2018-07-10 09:16:30 +0200224 newgrp docker << EONG
garciadeblas7f1e1042020-11-30 14:07:03 +0000225for module in ro lcm keystone nbi mon pol pla osmclient; do
226 docker image rm ${DOCKER_REGISTRY_URL}${DOCKER_USER}/${module}:${OSM_DOCKER_TAG}
227done
garciadeblas83ca1322018-05-22 18:31:14 +0200228EONG
vijaynag8339ed22019-07-25 17:10:58 +0530229
vijaynag4b57d462020-06-08 14:23:10 +0000230 if [ -n "$NGUI" ]; then
garciadeblas7f1e1042020-11-30 14:07:03 +0000231 sg docker -c "docker image rm ${DOCKER_REGISTRY_URL}${DOCKER_USER}/ng-ui:${OSM_DOCKER_TAG}"
vijaynag4b57d462020-06-08 14:23:10 +0000232 else
garciadeblas7f1e1042020-11-30 14:07:03 +0000233 sg docker -c "docker image rm ${DOCKER_REGISTRY_URL}${DOCKER_USER}/light-ui:${OSM_DOCKER_TAG}"
beierlma4a37f72020-06-26 12:55:01 -0400234 fi
vijaynag4b57d462020-06-08 14:23:10 +0000235
vijaynag8339ed22019-07-25 17:10:58 +0530236 if [ -n "$KUBERNETES" ]; then
237 OSM_NAMESPACE_VOL="${OSM_HOST_VOL}/${OSM_STACK_NAME}"
238 remove_volumes $OSM_NAMESPACE_VOL
239 else
240 remove_volumes $OSM_STACK_NAME
241 remove_network $OSM_STACK_NAME
David Garcia6cbfee12020-10-23 10:40:20 +0200242 [ -z "$CONTROLLER_NAME" ] && remove_iptables $OSM_STACK_NAME
vijaynag8339ed22019-07-25 17:10:58 +0530243 fi
Mike Marchettib8420852018-09-13 13:45:06 -0400244 echo "Removing $OSM_DOCKER_WORK_DIR"
245 $WORKDIR_SUDO rm -rf $OSM_DOCKER_WORK_DIR
David Garcia6cbfee12020-10-23 10:40:20 +0200246 [ -z "$CONTROLLER_NAME" ] && sg lxd -c "juju kill-controller -t 0 -y $OSM_STACK_NAME"
garciadeblas282ff4e2018-07-10 09:16:30 +0200247 fi
calvinosanc10c82da02020-08-17 11:45:15 +0200248 remove_crontab_job
Antonio Marsicoe3650fc2020-12-21 17:29:42 +0100249
250 # Cleanup Openstack installer venv
251 if [ -d "$OPENSTACK_PYTHON_VENV" ]; then
252 rm -r $OPENSTACK_PYTHON_VENV
253 fi
254
beierlma4a37f72020-06-26 12:55:01 -0400255 [ -z "$INSTALL_NOHOSTCLIENT" ] && uninstall_osmclient
garciadeblas282ff4e2018-07-10 09:16:30 +0200256 echo "Some docker images will be kept in case they are used by other docker stacks"
257 echo "To remove them, just run 'docker image prune' in a terminal"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200258 return 0
259}
260
Francisco-Javier Ramón Salguero4205c192020-02-22 01:45:41 +0100261#Safe unattended install of iptables-persistent
262function check_install_iptables_persistent(){
263 echo -e "\nChecking required packages: iptables-persistent"
beierlma4a37f72020-06-26 12:55:01 -0400264 if ! dpkg -l iptables-persistent &>/dev/null; then
Francisco-Javier Ramón Salguero4205c192020-02-22 01:45:41 +0100265 echo -e " Not installed.\nInstalling iptables-persistent requires root privileges"
266 echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections
267 echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections
268 sudo apt-get -yq install iptables-persistent
269 fi
270}
271
garciadeblasd8bc5c32018-05-09 17:37:56 +0200272#Configure NAT rules, based on the current IP addresses of containers
273function nat(){
Francisco-Javier Ramón Salguero4205c192020-02-22 01:45:41 +0100274 check_install_iptables_persistent
Dominik Fleischmannc57296f2020-06-09 11:45:08 +0200275
garciadeblasd8bc5c32018-05-09 17:37:56 +0200276 echo -e "\nConfiguring NAT rules"
277 echo -e " Required root privileges"
278 sudo $OSM_DEVOPS/installers/nat_osm
279}
280
281function FATAL(){
282 echo "FATAL error: Cannot install OSM due to \"$1\""
283 exit 1
284}
285
calvinosanc10c82da02020-08-17 11:45:15 +0200286function update_juju_images(){
287 crontab -l | grep update-juju-lxc-images || (crontab -l 2>/dev/null; echo "0 4 * * 6 $USER ${OSM_DEVOPS}/installers/update-juju-lxc-images --xenial --bionic") | crontab -
288 ${OSM_DEVOPS}/installers/update-juju-lxc-images --xenial --bionic
289}
290
garciadeblasd8bc5c32018-05-09 17:37:56 +0200291function install_lxd() {
David Garcia50d786e2020-03-30 14:49:40 +0200292 # Apply sysctl production values for optimal performance
garciadeblasd807e902020-07-04 07:38:49 +0000293 sudo cp ${OSM_DEVOPS}/installers/60-lxd-production.conf /etc/sysctl.d/60-lxd-production.conf
David Garcia50d786e2020-03-30 14:49:40 +0200294 sudo sysctl --system
295
296 # Install LXD snap
297 sudo apt-get remove --purge -y liblxc1 lxc-common lxcfs lxd lxd-client
David Garcia42375212020-04-27 19:07:49 +0200298 sudo snap install lxd
David Garcia50d786e2020-03-30 14:49:40 +0200299
300 # Configure LXD
301 sudo usermod -a -G lxd `whoami`
garciadeblasd807e902020-07-04 07:38:49 +0000302 cat ${OSM_DEVOPS}/installers/lxd-preseed.conf | sed 's/^config: {}/config:\n core.https_address: '$DEFAULT_IP':8443/' | sg lxd -c "lxd init --preseed"
David Garcia50d786e2020-03-30 14:49:40 +0200303 sg lxd -c "lxd waitready"
tierno7d8f12e2020-05-18 14:17:41 +0000304 DEFAULT_INTERFACE=$(ip route list|awk '$1=="default" {print $5; exit}')
305 [ -z "$DEFAULT_INTERFACE" ] && DEFAULT_INTERFACE=$(route -n |awk '$1~/^0.0.0.0/ {print $8; exit}')
garciadeblasd8bc5c32018-05-09 17:37:56 +0200306 DEFAULT_MTU=$(ip addr show $DEFAULT_INTERFACE | perl -ne 'if (/mtu\s(\d+)/) {print $1;}')
David Garcia50d786e2020-03-30 14:49:40 +0200307 sg lxd -c "lxc profile device set default eth0 mtu $DEFAULT_MTU"
David Garciad00e49c2020-06-19 10:33:37 +0200308 sg lxd -c "lxc network set lxdbr0 bridge.mtu $DEFAULT_MTU"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200309 #sudo systemctl stop lxd-bridge
310 #sudo systemctl --system daemon-reload
311 #sudo systemctl enable lxd-bridge
312 #sudo systemctl start lxd-bridge
313}
314
315function ask_user(){
316 # ask to the user and parse a response among 'y', 'yes', 'n' or 'no'. Case insensitive
317 # Params: $1 text to ask; $2 Action by default, can be 'y' for yes, 'n' for no, other or empty for not allowed
318 # Return: true(0) if user type 'yes'; false (1) if user type 'no'
319 read -e -p "$1" USER_CONFIRMATION
320 while true ; do
321 [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'y' ] && return 0
322 [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'n' ] && return 1
323 [ "${USER_CONFIRMATION,,}" == "yes" ] || [ "${USER_CONFIRMATION,,}" == "y" ] && return 0
324 [ "${USER_CONFIRMATION,,}" == "no" ] || [ "${USER_CONFIRMATION,,}" == "n" ] && return 1
325 read -e -p "Please type 'yes' or 'no': " USER_CONFIRMATION
326 done
327}
328
garciadeblasd8bc5c32018-05-09 17:37:56 +0200329function install_osmclient(){
330 CLIENT_RELEASE=${RELEASE#"-R "}
331 CLIENT_REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg"
332 CLIENT_REPOSITORY=${REPOSITORY#"-r "}
garciadeblasd8bc5c32018-05-09 17:37:56 +0200333 CLIENT_REPOSITORY_BASE=${REPOSITORY_BASE#"-u "}
334 key_location=$CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE/$CLIENT_REPOSITORY_KEY
335 curl $key_location | sudo apt-key add -
garciadeblas078f5982019-11-27 15:06:06 +0100336 sudo add-apt-repository -y "deb [arch=amd64] $CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE $CLIENT_REPOSITORY osmclient IM"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200337 sudo apt-get update
garciadeblas078f5982019-11-27 15:06:06 +0100338 sudo apt-get install -y python3-pip
339 sudo -H LC_ALL=C python3 -m pip install -U pip
garciadeblasa9954892020-01-22 16:05:05 +0100340 sudo -H LC_ALL=C python3 -m pip install -U python-magic pyangbind verboselogs
garciadeblasda89ee72019-11-28 02:19:59 +0100341 sudo apt-get install -y python3-osm-im python3-osmclient
garciadeblasd8bc5c32018-05-09 17:37:56 +0200342 #sed 's,OSM_SOL005=[^$]*,OSM_SOL005=True,' -i ${HOME}/.bashrc
343 #echo 'export OSM_HOSTNAME=localhost' >> ${HOME}/.bashrc
344 #echo 'export OSM_SOL005=True' >> ${HOME}/.bashrc
345 [ -z "$INSTALL_LIGHTWEIGHT" ] && export OSM_HOSTNAME=`lxc list | awk '($2=="SO-ub"){print $6}'`
346 [ -z "$INSTALL_LIGHTWEIGHT" ] && export OSM_RO_HOSTNAME=`lxc list | awk '($2=="RO"){print $6}'`
garciadeblasd8bc5c32018-05-09 17:37:56 +0200347 echo -e "\nOSM client installed"
garciadeblasc3226982018-11-27 11:32:47 +0100348 if [ -z "$INSTALL_LIGHTWEIGHT" ]; then
349 echo -e "You might be interested in adding the following OSM client env variables to your .bashrc file:"
350 echo " export OSM_HOSTNAME=${OSM_HOSTNAME}"
351 echo " export OSM_RO_HOSTNAME=${OSM_RO_HOSTNAME}"
352 else
353 echo -e "OSM client assumes that OSM host is running in localhost (127.0.0.1)."
354 echo -e "In case you want to interact with a different OSM host, you will have to configure this env variable in your .bashrc file:"
355 echo " export OSM_HOSTNAME=<OSM_host>"
356 fi
garciadeblasd8bc5c32018-05-09 17:37:56 +0200357 return 0
358}
359
lavado6ad812e2019-11-29 10:58:58 -0500360function install_prometheus_nodeexporter(){
lavadoc26d90b2019-12-06 18:11:36 -0500361 if (systemctl -q is-active node_exporter)
362 then
363 echo "Node Exporter is already running."
364 else
365 echo "Node Exporter is not active, installing..."
366 if getent passwd node_exporter > /dev/null 2>&1; then
367 echo "node_exporter user exists"
368 else
369 echo "Creating user node_exporter"
370 sudo useradd --no-create-home --shell /bin/false node_exporter
371 fi
garciadeblas82671062020-04-29 13:24:19 +0000372 wget -q https://github.com/prometheus/node_exporter/releases/download/v$PROMETHEUS_NODE_EXPORTER_TAG/node_exporter-$PROMETHEUS_NODE_EXPORTER_TAG.linux-amd64.tar.gz -P /tmp/
lavadoc26d90b2019-12-06 18:11:36 -0500373 sudo tar -C /tmp -xf /tmp/node_exporter-$PROMETHEUS_NODE_EXPORTER_TAG.linux-amd64.tar.gz
374 sudo cp /tmp/node_exporter-$PROMETHEUS_NODE_EXPORTER_TAG.linux-amd64/node_exporter /usr/local/bin
375 sudo chown node_exporter:node_exporter /usr/local/bin/node_exporter
garciadeblas82671062020-04-29 13:24:19 +0000376 sudo rm -rf /tmp/node_exporter-$PROMETHEUS_NODE_EXPORTER_TAG.linux-amd64*
garciadeblas1aba3392020-06-30 14:18:12 +0000377 sudo cp ${OSM_DEVOPS}/installers/docker/prometheus_exporters/node_exporter.service /etc/systemd/system/node_exporter.service
lavadoc26d90b2019-12-06 18:11:36 -0500378 sudo systemctl daemon-reload
379 sudo systemctl restart node_exporter
380 sudo systemctl enable node_exporter
381 echo "Node Exporter has been activated in this host."
382 fi
lavado6ad812e2019-11-29 10:58:58 -0500383 return 0
384}
385
lavado1e4a88c2019-12-03 16:19:59 -0500386function uninstall_prometheus_nodeexporter(){
387 sudo systemctl stop node_exporter
388 sudo systemctl disable node_exporter
389 sudo rm /etc/systemd/system/node_exporter.service
390 sudo systemctl daemon-reload
391 sudo userdel node_exporter
392 sudo rm /usr/local/bin/node_exporter
393 return 0
394}
395
garciadeblasd8bc5c32018-05-09 17:37:56 +0200396function install_docker_ce() {
397 # installs and configures Docker CE
398 echo "Installing Docker CE ..."
399 sudo apt-get -qq update
400 sudo apt-get install -y apt-transport-https ca-certificates software-properties-common
401 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
402 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
403 sudo apt-get -qq update
404 sudo apt-get install -y docker-ce
405 echo "Adding user to group 'docker'"
406 sudo groupadd -f docker
407 sudo usermod -aG docker $USER
garciadeblasd8bc5c32018-05-09 17:37:56 +0200408 sleep 2
409 sudo service docker restart
410 echo "... restarted Docker service"
garciadeblas7f1e1042020-11-30 14:07:03 +0000411 if [ -n "${DOCKER_PROXY_URL}" ]; then
412 echo "Configuring docker proxy ..."
garciadeblase7edc1d2020-12-17 17:17:35 +0100413 if [ -f /etc/docker/daemon.json ]; then
414 if grep -q registry-mirrors /etc/docker/daemon.json; then
beierlmd15e0542021-02-19 09:34:57 -0500415 sudo sed -i "s|registry-mirrors.*|registry-mirrors\": [\"${DOCKER_PROXY_URL}\"] |" /etc/docker/daemon.json
garciadeblas7f1e1042020-11-30 14:07:03 +0000416 else
beierlmd15e0542021-02-19 09:34:57 -0500417 sudo sed -i "s|{|{\n \"registry-mirrors\": [\"${DOCKER_PROXY_URL}\"],|" /etc/docker/daemon.json
garciadeblas7f1e1042020-11-30 14:07:03 +0000418 fi
419 else
beierlmd15e0542021-02-19 09:34:57 -0500420 sudo bash -c "cat << EOF > /etc/docker/daemon.json
garciadeblas7f1e1042020-11-30 14:07:03 +0000421{
beierlmd15e0542021-02-19 09:34:57 -0500422 \"registry-mirrors\": [\"${DOCKER_PROXY_URL}\"]
garciadeblas7f1e1042020-11-30 14:07:03 +0000423}
beierlmd15e0542021-02-19 09:34:57 -0500424EOF"
garciadeblas7f1e1042020-11-30 14:07:03 +0000425 fi
beierlmd15e0542021-02-19 09:34:57 -0500426 sudo systemctl daemon-reload
garciadeblas7f1e1042020-11-30 14:07:03 +0000427 sudo service docker restart
428 echo "... restarted Docker service again"
429 fi
garciadeblas67ce97c2018-05-18 10:22:09 +0200430 sg docker -c "docker version" || FATAL "Docker installation failed"
431 echo "... Docker CE installation done"
432 return 0
garciadeblasd8bc5c32018-05-09 17:37:56 +0200433}
434
435function install_docker_compose() {
436 # installs and configures docker-compose
437 echo "Installing Docker Compose ..."
438 sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
439 sudo chmod +x /usr/local/bin/docker-compose
440 echo "... Docker Compose installation done"
441}
442
443function install_juju() {
444 echo "Installing juju"
beierlma4a37f72020-06-26 12:55:01 -0400445 sudo snap install juju --classic --channel=2.8/stable
Dominik4763cfe2019-11-27 12:15:50 +0100446 [[ ":$PATH": != *":/snap/bin:"* ]] && PATH="/snap/bin:${PATH}"
calvinosanc10c82da02020-08-17 11:45:15 +0200447 update_juju_images
garciadeblasd8bc5c32018-05-09 17:37:56 +0200448 echo "Finished installation of juju"
Mike Marchettib8420852018-09-13 13:45:06 -0400449 return 0
450}
451
452function juju_createcontroller() {
Adam Israel8232e562018-11-21 16:47:45 -0500453 if ! juju show-controller $OSM_STACK_NAME &> /dev/null; then
Mike Marchettib8420852018-09-13 13:45:06 -0400454 # Not found created, create the controller
garciadeblas85bb41a2020-01-15 18:20:14 +0100455 sudo usermod -a -G lxd ${USER}
David Garcia6cbfee12020-10-23 10:40:20 +0200456 sg lxd -c "juju bootstrap --bootstrap-series=xenial --agent-version=$JUJU_AGENT_VERSION $OSM_VCA_CLOUDNAME $OSM_STACK_NAME"
Mike Marchettib8420852018-09-13 13:45:06 -0400457 fi
Adam Israel8232e562018-11-21 16:47:45 -0500458 [ $(juju controllers | awk "/^${OSM_STACK_NAME}[\*| ]/{print $1}"|wc -l) -eq 1 ] || FATAL "Juju installation failed"
beierlma4a37f72020-06-26 12:55:01 -0400459 juju controller-config features=[k8s-operators]
460}
461
462function juju_addk8s() {
463 cat $HOME/.kube/config | juju add-k8s $OSM_VCA_K8S_CLOUDNAME --controller $OSM_STACK_NAME --storage openebs-hostpath
garciadeblasd8bc5c32018-05-09 17:37:56 +0200464}
465
David Garcia6cbfee12020-10-23 10:40:20 +0200466function juju_createcontroller_k8s(){
467 cat $HOME/.kube/config | juju add-k8s $OSM_VCA_K8S_CLOUDNAME --client
468 juju bootstrap $OSM_VCA_K8S_CLOUDNAME $OSM_STACK_NAME \
469 --config controller-service-type=loadbalancer \
470 --agent-version=$JUJU_AGENT_VERSION
471}
472
473
474function juju_addlxd_cloud(){
475 mkdir -p /tmp/.osm
476 OSM_VCA_CLOUDNAME="lxd-cloud"
477 LXDENDPOINT=$DEFAULT_IP
478 LXD_CLOUD=/tmp/.osm/lxd-cloud.yaml
479 LXD_CREDENTIALS=/tmp/.osm/lxd-credentials.yaml
480
481 cat << EOF > $LXD_CLOUD
482clouds:
483 $OSM_VCA_CLOUDNAME:
484 type: lxd
485 auth-types: [certificate]
486 endpoint: "https://$LXDENDPOINT:8443"
487 config:
488 ssl-hostname-verification: false
489EOF
490 openssl req -nodes -new -x509 -keyout /tmp/.osm/client.key -out /tmp/.osm/client.crt -days 365 -subj "/C=FR/ST=Nice/L=Nice/O=ETSI/OU=OSM/CN=osm.etsi.org"
491 local server_cert=`cat /var/snap/lxd/common/lxd/server.crt | sed 's/^/ /'`
492 local client_cert=`cat /tmp/.osm/client.crt | sed 's/^/ /'`
493 local client_key=`cat /tmp/.osm/client.key | sed 's/^/ /'`
494
495 cat << EOF > $LXD_CREDENTIALS
496credentials:
497 $OSM_VCA_CLOUDNAME:
498 lxd-cloud:
499 auth-type: certificate
500 server-cert: |
501$server_cert
502 client-cert: |
503$client_cert
504 client-key: |
505$client_key
506EOF
507 lxc config trust add local: /tmp/.osm/client.crt
508 juju add-cloud -c $OSM_STACK_NAME $OSM_VCA_CLOUDNAME $LXD_CLOUD --force
509 juju add-credential -c $OSM_STACK_NAME $OSM_VCA_CLOUDNAME -f $LXD_CREDENTIALS
510 sg lxd -c "lxd waitready"
511 juju controller-config features=[k8s-operators]
512}
513
514
Adam Israel5ddc97f2019-09-03 18:11:12 -0400515function juju_createproxy() {
Francisco-Javier Ramón Salguero4205c192020-02-22 01:45:41 +0100516 check_install_iptables_persistent
Adam Israel43fb44d2019-11-06 10:37:25 -0500517
David Garcia26432d42019-12-11 12:22:35 +0100518 if ! sudo iptables -t nat -C PREROUTING -p tcp -m tcp -d $DEFAULT_IP --dport 17070 -j DNAT --to-destination $OSM_VCA_HOST; then
519 sudo iptables -t nat -A PREROUTING -p tcp -m tcp -d $DEFAULT_IP --dport 17070 -j DNAT --to-destination $OSM_VCA_HOST
Adam Israel5ddc97f2019-09-03 18:11:12 -0400520 sudo netfilter-persistent save
521 fi
522}
523
garciadeblas453d4582020-12-16 19:03:10 +0100524function docker_login() {
525 echo "Docker login"
526 sg docker -c "docker login -u ${DOCKER_REGISTRY_USER} -p ${DOCKER_REGISTRY_PASSWORD}"
527}
528
garciadeblasd8bc5c32018-05-09 17:37:56 +0200529function generate_docker_images() {
530 echo "Pulling and generating docker images"
garciadeblas453d4582020-12-16 19:03:10 +0100531 [ -n "${DOCKER_REGISTRY_URL}" ] && docker_login
Michael Marchettiee374142018-08-02 22:47:16 +0200532
garciadeblas7f1e1042020-11-30 14:07:03 +0000533 echo "Pulling docker images"
lavado60216242018-10-10 23:44:28 +0200534
garciadeblas0e596bc2018-05-28 16:04:42 +0200535 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q KAFKA ; then
536 sg docker -c "docker pull wurstmeister/zookeeper" || FATAL "cannot get zookeeper docker image"
Benjamin Diazaa0af712018-10-04 14:02:34 -0300537 sg docker -c "docker pull wurstmeister/kafka:${KAFKA_TAG}" || FATAL "cannot get kafka docker image"
garciadeblas0e596bc2018-05-28 16:04:42 +0200538 fi
Mike Marchettida8a9c42018-10-01 15:25:15 -0400539
garciadeblas0e596bc2018-05-28 16:04:42 +0200540 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q MONGO ; then
541 sg docker -c "docker pull mongo" || FATAL "cannot get mongo docker image"
542 fi
Mike Marchettida8a9c42018-10-01 15:25:15 -0400543
lavado60216242018-10-10 23:44:28 +0200544 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q PROMETHEUS ; then
545 sg docker -c "docker pull prom/prometheus:${PROMETHEUS_TAG}" || FATAL "cannot get prometheus docker image"
546 fi
547
garciadeblasfc5bb142019-12-10 10:49:12 +0100548 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q PROMETHEUS-CADVISOR ; then
549 sg docker -c "docker pull google/cadvisor:${PROMETHEUS_CADVISOR_TAG}" || FATAL "cannot get prometheus cadvisor docker image"
550 fi
551
lavado6ad812e2019-11-29 10:58:58 -0500552 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q GRAFANA ; then
553 sg docker -c "docker pull grafana/grafana:${GRAFANA_TAG}" || FATAL "cannot get grafana docker image"
garciadeblasfc5bb142019-12-10 10:49:12 +0100554 fi
lavado6ad812e2019-11-29 10:58:58 -0500555
garciadeblas4a83e6e2018-12-04 14:55:09 +0100556 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q NBI || echo $TO_REBUILD | grep -q KEYSTONE-DB ; then
lavado9a8df7c2018-10-24 09:35:34 -0500557 sg docker -c "docker pull mariadb:${KEYSTONEDB_TAG}" || FATAL "cannot get keystone-db docker image"
558 fi
559
garciadeblas4a83e6e2018-12-04 14:55:09 +0100560 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q RO ; then
561 sg docker -c "docker pull mysql:5" || FATAL "cannot get mysql docker image"
562 fi
563
Mike Marchettida8a9c42018-10-01 15:25:15 -0400564 if [ -n "$PULL_IMAGES" ]; then
garciadeblas7f1e1042020-11-30 14:07:03 +0000565 echo "Pulling OSM docker images"
566 for module in MON POL NBI KEYSTONE RO LCM NG-UI LW-UI PLA osmclient; do
567 module_lower=${module,,}
568 if [ $module == "LW-UI" ]; then
569 if [ -n "$NGUI" ]; then
570 continue
571 else
572 module_lower="light-ui"
573 fi
574 fi
575 if [ $module == "NG-UI" -a ! -n "$NGUI" ]; then
576 continue
577 fi
578 if [ $module == "PLA" -a ! -n "$INSTALL_PLA" ]; then
579 continue
580 fi
581 module_tag="${OSM_DOCKER_TAG}"
582 if [ -n "${MODULE_DOCKER_TAG}" ] && echo $TO_REBUILD | grep -q $module ; then
583 module_tag="${MODULE_DOCKER_TAG}"
584 fi
585 echo "Pulling ${DOCKER_REGISTRY_URL}${DOCKER_USER}/${module_lower}:${module_tag} docker image"
586 sg docker -c "docker pull ${DOCKER_REGISTRY_URL}${DOCKER_USER}/${module_lower}:${module_tag}" || FATAL "cannot pull $module docker image"
587 done
vijaynag4b57d462020-06-08 14:23:10 +0000588 else
garciadeblas7f1e1042020-11-30 14:07:03 +0000589 _build_from=$COMMIT_ID
590 [ -z "$_build_from" ] && _build_from="latest"
591 echo "OSM Docker images generated from $_build_from"
592
593 for module in MON POL NBI KEYSTONE RO LCM NG-UI LW-UI PLA; do
594 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q ${module} ; then
595 module_lower=${module,,}
596 if [ $module == "LW-UI" ]; then
597 if [ -n "$NGUI" ]; then
598 continue
599 else
600 module_lower="light-ui"
601 fi
602 fi
603 if [ $module == "NG-UI" -a ! -n "$NGUI" ]; then
604 continue
605 fi
606 if [ $module == "PLA" -a ! -n "$INSTALL_PLA" ]; then
607 continue
608 fi
609 git -C ${LWTEMPDIR} clone https://osm.etsi.org/gerrit/osm/$module
610 git -C ${LWTEMPDIR}/${module} checkout ${COMMIT_ID}
611 sg docker -c "docker build ${LWTEMPDIR}/${module} -f ${LWTEMPDIR}/${module}/docker/Dockerfile -t ${DOCKER_USER}/${module_lower} --no-cache" || FATAL "cannot build ${module} docker image"
612 fi
613 done
614 if [ -z "$TO_REBUILD" ] || echo $TO_REBUILD | grep -q osmclient; then
615 BUILD_ARGS+=(--build-arg REPOSITORY="$REPOSITORY")
616 BUILD_ARGS+=(--build-arg RELEASE="$RELEASE")
617 BUILD_ARGS+=(--build-arg REPOSITORY_KEY="$REPOSITORY_KEY")
618 BUILD_ARGS+=(--build-arg REPOSITORY_BASE="$REPOSITORY_BASE")
619 sg docker -c "docker build -t ${DOCKER_USER}/osmclient ${BUILD_ARGS[@]} -f $OSM_DEVOPS/docker/osmclient ."
vijaynag4b57d462020-06-08 14:23:10 +0000620 fi
garciadeblas7f1e1042020-11-30 14:07:03 +0000621 echo "Finished generation of docker images"
Mike Marchettib8420852018-09-13 13:45:06 -0400622 fi
lavado6ad812e2019-11-29 10:58:58 -0500623
garciadeblas7f1e1042020-11-30 14:07:03 +0000624 echo "Finished pulling and generating docker images"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200625}
626
garciadeblas5b857d32018-05-24 18:37:58 +0200627function cmp_overwrite() {
628 file1="$1"
629 file2="$2"
630 if ! $(cmp "${file1}" "${file2}" >/dev/null 2>&1); then
631 if [ -f "${file2}" ]; then
Mike Marchettib8420852018-09-13 13:45:06 -0400632 ask_user "The file ${file2} already exists. Overwrite (y/N)? " n && cp -b ${file1} ${file2}
garciadeblas5b857d32018-05-24 18:37:58 +0200633 else
Mike Marchettib8420852018-09-13 13:45:06 -0400634 cp -b ${file1} ${file2}
garciadeblas5b857d32018-05-24 18:37:58 +0200635 fi
636 fi
637}
638
beierlma4a37f72020-06-26 12:55:01 -0400639function generate_docker_compose_files() {
640 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/docker-compose.yaml $OSM_DOCKER_WORK_DIR/docker-compose.yaml
641 if [ -n "$NGUI" ]; then
642 # For NG-UI
643 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/docker-compose-ngui.yaml $OSM_DOCKER_WORK_DIR/docker-compose-ui.yaml
644 else
645 # Docker-compose
646 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/docker-compose-lightui.yaml $OSM_DOCKER_WORK_DIR/docker-compose-ui.yaml
647 fi
648 if [ -n "$INSTALL_PLA" ]; then
649 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/osm_pla/docker-compose.yaml $OSM_DOCKER_WORK_DIR/osm_pla/docker-compose.yaml
650 fi
651}
652
653function generate_k8s_manifest_files() {
654 #Kubernetes resources
655 $WORKDIR_SUDO cp -bR ${OSM_DEVOPS}/installers/docker/osm_pods $OSM_DOCKER_WORK_DIR
David Garciaa1376012020-10-19 15:42:42 +0200656 $WORKDIR_SUDO rm -f $OSM_K8S_WORK_DIR/mongo.yaml
beierlma4a37f72020-06-26 12:55:01 -0400657 if [ -n "$NGUI" ]; then
658 $WORKDIR_SUDO rm -f $OSM_K8S_WORK_DIR/light-ui.yaml
659 else
660 $WORKDIR_SUDO rm -f $OSM_K8S_WORK_DIR/ng-ui.yaml
661 fi
662}
663
664function generate_prometheus_grafana_files() {
665 [ -n "$KUBERNETES" ] && return
666 # Prometheus files
667 $WORKDIR_SUDO mkdir -p $OSM_DOCKER_WORK_DIR/prometheus
668 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/prometheus/prometheus.yml $OSM_DOCKER_WORK_DIR/prometheus/prometheus.yml
669
670 # Grafana files
671 $WORKDIR_SUDO mkdir -p $OSM_DOCKER_WORK_DIR/grafana
672 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/grafana/dashboards-osm.yml $OSM_DOCKER_WORK_DIR/grafana/dashboards-osm.yml
673 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/grafana/datasource-prometheus.yml $OSM_DOCKER_WORK_DIR/grafana/datasource-prometheus.yml
674 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/grafana/osm-sample-dashboard.json $OSM_DOCKER_WORK_DIR/grafana/osm-sample-dashboard.json
675 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/grafana/osm-system-dashboard.json $OSM_DOCKER_WORK_DIR/grafana/osm-system-dashboard.json
676
677 # Prometheus Exporters files
678 $WORKDIR_SUDO mkdir -p $OSM_DOCKER_WORK_DIR/prometheus_exporters
679 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/prometheus_exporters/node_exporter.service $OSM_DOCKER_WORK_DIR/prometheus_exporters/node_exporter.service
680}
681
garciadeblasd8bc5c32018-05-09 17:37:56 +0200682function generate_docker_env_files() {
garciadeblasf9f6d9d2019-10-16 09:33:35 +0200683 echo "Doing a backup of existing env files"
684 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/keystone-db.env{,~}
685 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/keystone.env{,~}
686 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/lcm.env{,~}
687 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/lwui.env{,~}
688 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/mon.env{,~}
689 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/nbi.env{,~}
690 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/pol.env{,~}
691 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/ro-db.env{,~}
692 $WORKDIR_SUDO cp $OSM_DOCKER_WORK_DIR/ro.env{,~}
693
garciadeblasd8bc5c32018-05-09 17:37:56 +0200694 echo "Generating docker env files"
Benjamin Diazba2cca92018-11-08 21:07:15 -0300695 # LCM
696 if [ ! -f $OSM_DOCKER_WORK_DIR/lcm.env ]; then
697 echo "OSMLCM_DATABASE_COMMONKEY=${OSM_DATABASE_COMMONKEY}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
698 fi
Mike Marchettib8420852018-09-13 13:45:06 -0400699
Benjamin Diazba2cca92018-11-08 21:07:15 -0300700 if ! grep -Fq "OSMLCM_VCA_HOST" $OSM_DOCKER_WORK_DIR/lcm.env; then
701 echo "OSMLCM_VCA_HOST=${OSM_VCA_HOST}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
702 else
703 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_HOST.*|OSMLCM_VCA_HOST=$OSM_VCA_HOST|g" $OSM_DOCKER_WORK_DIR/lcm.env
704 fi
705
706 if ! grep -Fq "OSMLCM_VCA_SECRET" $OSM_DOCKER_WORK_DIR/lcm.env; then
707 echo "OSMLCM_VCA_SECRET=${OSM_VCA_SECRET}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
708 else
709 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_SECRET.*|OSMLCM_VCA_SECRET=$OSM_VCA_SECRET|g" $OSM_DOCKER_WORK_DIR/lcm.env
710 fi
711
garciadeblasaa3ddf42019-04-04 19:04:32 +0200712 if ! grep -Fq "OSMLCM_VCA_PUBKEY" $OSM_DOCKER_WORK_DIR/lcm.env; then
garciadeblasec537902019-12-10 14:13:40 +0100713 echo "OSMLCM_VCA_PUBKEY=${OSM_VCA_PUBKEY}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
garciadeblasaa3ddf42019-04-04 19:04:32 +0200714 else
garciadeblasec537902019-12-10 14:13:40 +0100715 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_PUBKEY.*|OSMLCM_VCA_PUBKEY=${OSM_VCA_PUBKEY}|g" $OSM_DOCKER_WORK_DIR/lcm.env
garciadeblasaa3ddf42019-04-04 19:04:32 +0200716 fi
717
Adam Israelbe7676a2019-10-02 16:10:53 -0400718 if ! grep -Fq "OSMLCM_VCA_CACERT" $OSM_DOCKER_WORK_DIR/lcm.env; then
garciadeblas7f1e1042020-11-30 14:07:03 +0000719 echo "OSMLCM_VCA_CACERT=${OSM_VCA_CACERT}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
Adam Israelbe7676a2019-10-02 16:10:53 -0400720 else
garciadeblas7f1e1042020-11-30 14:07:03 +0000721 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_CACERT.*|OSMLCM_VCA_CACERT=${OSM_VCA_CACERT}|g" $OSM_DOCKER_WORK_DIR/lcm.env
Adam Israelbe7676a2019-10-02 16:10:53 -0400722 fi
Benjamin Diazba2cca92018-11-08 21:07:15 -0300723
David Garcia6cbfee12020-10-23 10:40:20 +0200724 if [ -n "$OSM_VCA_APIPROXY" ]; then
725 if ! grep -Fq "OSMLCM_VCA_APIPROXY" $OSM_DOCKER_WORK_DIR/lcm.env; then
726 echo "OSMLCM_VCA_APIPROXY=${OSM_VCA_APIPROXY}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
727 else
728 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_APIPROXY.*|OSMLCM_VCA_APIPROXY=${OSM_VCA_APIPROXY}|g" $OSM_DOCKER_WORK_DIR/lcm.env
729 fi
Adam Israel5ddc97f2019-09-03 18:11:12 -0400730 fi
731
garciadeblasa2e41842019-12-18 11:05:24 +0100732 if ! grep -Fq "OSMLCM_VCA_ENABLEOSUPGRADE" $OSM_DOCKER_WORK_DIR/lcm.env; then
733 echo "# OSMLCM_VCA_ENABLEOSUPGRADE=false" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
734 fi
735
736 if ! grep -Fq "OSMLCM_VCA_APTMIRROR" $OSM_DOCKER_WORK_DIR/lcm.env; then
737 echo "# OSMLCM_VCA_APTMIRROR=http://archive.ubuntu.com/ubuntu/" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
738 fi
739
David Garcia79f4f532020-04-07 12:59:34 +0200740 if ! grep -Fq "OSMLCM_VCA_CLOUD" $OSM_DOCKER_WORK_DIR/lcm.env; then
741 echo "OSMLCM_VCA_CLOUD=${OSM_VCA_CLOUDNAME}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
742 else
743 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_CLOUD.*|OSMLCM_VCA_CLOUD=${OSM_VCA_CLOUDNAME}|g" $OSM_DOCKER_WORK_DIR/lcm.env
744 fi
745
beierlma4a37f72020-06-26 12:55:01 -0400746 if ! grep -Fq "OSMLCM_VCA_K8S_CLOUD" $OSM_DOCKER_WORK_DIR/lcm.env; then
747 echo "OSMLCM_VCA_K8S_CLOUD=${OSM_VCA_K8S_CLOUDNAME}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lcm.env
748 else
749 $WORKDIR_SUDO sed -i "s|OSMLCM_VCA_K8S_CLOUD.*|OSMLCM_VCA_K8S_CLOUD=${OSM_VCA_K8S_CLOUDNAME}|g" $OSM_DOCKER_WORK_DIR/lcm.env
750 fi
751
Benjamin Diazba2cca92018-11-08 21:07:15 -0300752 # RO
753 MYSQL_ROOT_PASSWORD=$(generate_secret)
Mike Marchettib8420852018-09-13 13:45:06 -0400754 if [ ! -f $OSM_DOCKER_WORK_DIR/ro-db.env ]; then
755 echo "MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}" |$WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/ro-db.env
garciadeblas5b857d32018-05-24 18:37:58 +0200756 fi
Mike Marchettib8420852018-09-13 13:45:06 -0400757 if [ ! -f $OSM_DOCKER_WORK_DIR/ro.env ]; then
758 echo "RO_DB_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}" |$WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/ro.env
garciadeblas5b857d32018-05-24 18:37:58 +0200759 fi
tierno9ec1fe92020-11-25 13:16:51 +0000760 if ! grep -Fq "OSMRO_DATABASE_COMMONKEY" $OSM_DOCKER_WORK_DIR/ro.env; then
761 echo "OSMRO_DATABASE_COMMONKEY=${OSM_DATABASE_COMMONKEY}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/ro.env
762 fi
Eduardo Sousa09a1e972018-09-21 11:06:32 +0100763
Benjamin Diazba2cca92018-11-08 21:07:15 -0300764 # Keystone
Benjamin Diazba2cca92018-11-08 21:07:15 -0300765 KEYSTONE_DB_PASSWORD=$(generate_secret)
Eduardo Sousac50ed8f2019-04-08 17:17:54 +0100766 SERVICE_PASSWORD=$(generate_secret)
Eduardo Sousa09a1e972018-09-21 11:06:32 +0100767 if [ ! -f $OSM_DOCKER_WORK_DIR/keystone-db.env ]; then
768 echo "MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}" |$WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/keystone-db.env
769 fi
770 if [ ! -f $OSM_DOCKER_WORK_DIR/keystone.env ]; then
771 echo "ROOT_DB_PASSWORD=${MYSQL_ROOT_PASSWORD}" |$WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/keystone.env
Eduardo Sousae193dfd2018-09-21 11:37:49 +0100772 echo "KEYSTONE_DB_PASSWORD=${KEYSTONE_DB_PASSWORD}" |$WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/keystone.env
Eduardo Sousac50ed8f2019-04-08 17:17:54 +0100773 echo "SERVICE_PASSWORD=${SERVICE_PASSWORD}" |$WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/keystone.env
Eduardo Sousae193dfd2018-09-21 11:37:49 +0100774 fi
775
Benjamin Diazba2cca92018-11-08 21:07:15 -0300776 # NBI
Eduardo Sousae193dfd2018-09-21 11:37:49 +0100777 if [ ! -f $OSM_DOCKER_WORK_DIR/nbi.env ]; then
Eduardo Sousac50ed8f2019-04-08 17:17:54 +0100778 echo "OSMNBI_AUTHENTICATION_SERVICE_PASSWORD=${SERVICE_PASSWORD}" |$WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/nbi.env
Benjamin Diazba2cca92018-11-08 21:07:15 -0300779 echo "OSMNBI_DATABASE_COMMONKEY=${OSM_DATABASE_COMMONKEY}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/nbi.env
Eduardo Sousa09a1e972018-09-21 11:06:32 +0100780 fi
781
Benjamin Diazba2cca92018-11-08 21:07:15 -0300782 # MON
783 if [ ! -f $OSM_DOCKER_WORK_DIR/mon.env ]; then
limon46f334f2021-03-04 13:43:09 +0100784 echo "OSMMON_KEYSTONE_SERVICE_PASSWORD=${SERVICE_PASSWORD}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
Benjamin Diazba2cca92018-11-08 21:07:15 -0300785 echo "OSMMON_DATABASE_COMMONKEY=${OSM_DATABASE_COMMONKEY}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
Benjamin Diaz9261c662019-02-25 17:18:51 -0300786 echo "OSMMON_SQL_DATABASE_URI=mysql://root:${MYSQL_ROOT_PASSWORD}@mysql:3306/mon" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
Benjamin Diazba2cca92018-11-08 21:07:15 -0300787 fi
788
789 if ! grep -Fq "OS_NOTIFIER_URI" $OSM_DOCKER_WORK_DIR/mon.env; then
790 echo "OS_NOTIFIER_URI=http://${DEFAULT_IP}:8662" |$WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
791 else
792 $WORKDIR_SUDO sed -i "s|OS_NOTIFIER_URI.*|OS_NOTIFIER_URI=http://$DEFAULT_IP:8662|g" $OSM_DOCKER_WORK_DIR/mon.env
793 fi
794
795 if ! grep -Fq "OSMMON_VCA_HOST" $OSM_DOCKER_WORK_DIR/mon.env; then
796 echo "OSMMON_VCA_HOST=${OSM_VCA_HOST}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
797 else
798 $WORKDIR_SUDO sed -i "s|OSMMON_VCA_HOST.*|OSMMON_VCA_HOST=$OSM_VCA_HOST|g" $OSM_DOCKER_WORK_DIR/mon.env
799 fi
800
801 if ! grep -Fq "OSMMON_VCA_SECRET" $OSM_DOCKER_WORK_DIR/mon.env; then
802 echo "OSMMON_VCA_SECRET=${OSM_VCA_SECRET}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
803 else
804 $WORKDIR_SUDO sed -i "s|OSMMON_VCA_SECRET.*|OSMMON_VCA_SECRET=$OSM_VCA_SECRET|g" $OSM_DOCKER_WORK_DIR/mon.env
805 fi
Mike Marchettib8420852018-09-13 13:45:06 -0400806
Adam Israel6d8adf32019-12-05 15:46:54 -0500807 if ! grep -Fq "OSMMON_VCA_CACERT" $OSM_DOCKER_WORK_DIR/mon.env; then
garciadeblas7f1e1042020-11-30 14:07:03 +0000808 echo "OSMMON_VCA_CACERT=${OSM_VCA_CACERT}" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/mon.env
Adam Israel6d8adf32019-12-05 15:46:54 -0500809 else
garciadeblas7f1e1042020-11-30 14:07:03 +0000810 $WORKDIR_SUDO sed -i "s|OSMMON_VCA_CACERT.*|OSMMON_VCA_CACERT=${OSM_VCA_CACERT}|g" $OSM_DOCKER_WORK_DIR/mon.env
Adam Israel6d8adf32019-12-05 15:46:54 -0500811 fi
812
813
Benjamin Diaz04560882019-02-26 17:25:07 -0300814 # POL
815 if [ ! -f $OSM_DOCKER_WORK_DIR/pol.env ]; then
816 echo "OSMPOL_SQL_DATABASE_URI=mysql://root:${MYSQL_ROOT_PASSWORD}@mysql:3306/pol" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/pol.env
817 fi
818
Benjamin Diaz4088a9b2019-05-21 15:11:49 -0300819 # LW-UI
820 if [ ! -f $OSM_DOCKER_WORK_DIR/lwui.env ]; then
821 echo "OSMUI_SQL_DATABASE_URI=mysql://root:${MYSQL_ROOT_PASSWORD}@mysql:3306/lwui" | $WORKDIR_SUDO tee -a $OSM_DOCKER_WORK_DIR/lwui.env
822 fi
823
garciadeblasd8bc5c32018-05-09 17:37:56 +0200824 echo "Finished generation of docker env files"
825}
826
Mike Marchettib8420852018-09-13 13:45:06 -0400827function generate_osmclient_script () {
garciadeblas7f1e1042020-11-30 14:07:03 +0000828 echo "docker run -ti --network net${OSM_STACK_NAME} ${DOCKER_REGISTRY_URL}${DOCKER_USER}/osmclient:${OSM_DOCKER_TAG}" | $WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/osm
Mike Marchettib8420852018-09-13 13:45:06 -0400829 $WORKDIR_SUDO chmod +x "$OSM_DOCKER_WORK_DIR/osm"
830 echo "osmclient sidecar container can be found at: $OSM_DOCKER_WORK_DIR/osm"
831}
832
vijaynag8339ed22019-07-25 17:10:58 +0530833#installs kubernetes packages
834function install_kube() {
835 sudo apt-get update && sudo apt-get install -y apt-transport-https
836 curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
837 sudo add-apt-repository "deb https://apt.kubernetes.io/ kubernetes-xenial main"
838 sudo apt-get update
839 echo "Installing Kubernetes Packages ..."
840 sudo apt-get install -y kubelet=1.15.0-00 kubeadm=1.15.0-00 kubectl=1.15.0-00
endika57402a92021-03-22 17:13:45 +0100841 sudo apt-mark hold kubelet kubeadm kubectl
vijaynag8339ed22019-07-25 17:10:58 +0530842}
843
844#initializes kubernetes control plane
845function init_kubeadm() {
846 sudo swapoff -a
847 sudo kubeadm init --config $1
848 sleep 5
849}
850
851function kube_config_dir() {
852 [ ! -d $K8S_MANIFEST_DIR ] && FATAL "Cannot Install Kubernetes"
853 mkdir -p $HOME/.kube
854 sudo cp /etc/kubernetes/admin.conf $HOME/.kube/config
855 sudo chown $(id -u):$(id -g) $HOME/.kube/config
856}
857
beierlma4a37f72020-06-26 12:55:01 -0400858function install_k8s_storageclass() {
859 kubectl apply -f https://openebs.github.io/charts/openebs-operator-1.6.0.yaml
860 local storageclass_timeout=300
861 local counter=0
862 echo "Waiting for storageclass"
863 while (( counter < storageclass_timeout ))
864 do
865 kubectl get storageclass openebs-hostpath &> /dev/null
866
867 if [ $? -eq 0 ] ; then
868 echo "Storageclass available"
869 break
870 else
871 counter=$((counter + 15))
872 sleep 15
873 fi
874 done
875 kubectl patch storageclass openebs-hostpath -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'
876}
877
David Garcia6cbfee12020-10-23 10:40:20 +0200878function install_k8s_metallb() {
879 METALLB_IP_RANGE=$DEFAULT_IP-$DEFAULT_IP
880 cat ${OSM_DEVOPS}/installers/k8s/metallb/metallb.yaml | kubectl apply -f -
881 echo "apiVersion: v1
882kind: ConfigMap
883metadata:
884 namespace: metallb-system
885 name: config
886data:
887 config: |
888 address-pools:
889 - name: default
890 protocol: layer2
891 addresses:
892 - $METALLB_IP_RANGE" | kubectl apply -f -
893}
vijaynag8339ed22019-07-25 17:10:58 +0530894#deploys flannel as daemonsets
895function deploy_cni_provider() {
896 CNI_DIR="$(mktemp -d -q --tmpdir "flannel.XXXXXX")"
897 trap 'rm -rf "${CNI_DIR}"' EXIT
898 wget -q https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml -P $CNI_DIR
899 kubectl apply -f $CNI_DIR
900 [ $? -ne 0 ] && FATAL "Cannot Install Flannel"
901}
902
903#creates secrets from env files which will be used by containers
904function kube_secrets(){
905 kubectl create ns $OSM_STACK_NAME
906 kubectl create secret generic lcm-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/lcm.env
907 kubectl create secret generic mon-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/mon.env
908 kubectl create secret generic nbi-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/nbi.env
909 kubectl create secret generic ro-db-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/ro-db.env
910 kubectl create secret generic ro-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/ro.env
911 kubectl create secret generic keystone-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/keystone.env
912 kubectl create secret generic lwui-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/lwui.env
913 kubectl create secret generic pol-secret -n $OSM_STACK_NAME --from-env-file=$OSM_DOCKER_WORK_DIR/pol.env
914}
915
garciadeblasf6ed60c2020-07-08 14:30:29 +0000916#taints K8s master node
917function taint_master_node() {
vijaynag8339ed22019-07-25 17:10:58 +0530918 K8S_MASTER=$(kubectl get nodes | awk '$3~/master/'| awk '{print $1}')
919 kubectl taint node $K8S_MASTER node-role.kubernetes.io/master:NoSchedule-
920 sleep 5
garciadeblasf6ed60c2020-07-08 14:30:29 +0000921}
922
923#deploys osm pods and services
924function deploy_osm_services() {
vijaynag8339ed22019-07-25 17:10:58 +0530925 kubectl apply -n $OSM_STACK_NAME -f $OSM_K8S_WORK_DIR
926}
927
David Garciaa1376012020-10-19 15:42:42 +0200928#deploy charmed services
929function deploy_charmed_services() {
930 juju add-model $OSM_STACK_NAME $OSM_VCA_K8S_CLOUDNAME
931 # deploy mongodb charm
932 namespace=$OSM_STACK_NAME
933 juju deploy cs:~charmed-osm/mongodb-k8s \
934 --config enable-sidecar=true \
935 --config replica-set=rs0 \
936 --config namespace=$namespace \
937 -m $namespace
938}
939
magnussonl1bbe9452020-02-25 13:43:17 +0100940function deploy_osm_pla_service() {
magnussonl1bbe9452020-02-25 13:43:17 +0100941 # corresponding to namespace_vol
942 $WORKDIR_SUDO sed -i "s#path: /var/lib/osm#path: $OSM_NAMESPACE_VOL#g" $OSM_DOCKER_WORK_DIR/osm_pla/pla.yaml
943 # corresponding to deploy_osm_services
944 kubectl apply -n $OSM_STACK_NAME -f $OSM_DOCKER_WORK_DIR/osm_pla
945}
946
romeromonser599d5e22020-03-06 10:23:29 +0100947#Install helm and tiller
948function install_helm() {
949 helm > /dev/null 2>&1
950 if [ $? != 0 ] ; then
951 # Helm is not installed. Install helm
beierlma4a37f72020-06-26 12:55:01 -0400952 echo "Helm is not installed, installing ..."
romeromonser599d5e22020-03-06 10:23:29 +0100953 curl https://get.helm.sh/helm-v2.15.2-linux-amd64.tar.gz --output helm-v2.15.2.tar.gz
954 tar -zxvf helm-v2.15.2.tar.gz
955 sudo mv linux-amd64/helm /usr/local/bin/helm
956 rm -r linux-amd64
957 rm helm-v2.15.2.tar.gz
958 fi
959
960 # Checking if tiller has being configured
961 kubectl --namespace kube-system get serviceaccount tiller > /dev/null 2>&1
962 if [ $? == 1 ] ; then
963 # tiller account for kubernetes
964 kubectl --namespace kube-system create serviceaccount tiller
965 kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
966 # HELM initialization
garciadeblased4306b2021-01-15 11:37:49 +0000967 helm init --stable-repo-url https://charts.helm.sh/stable --service-account tiller
romeromonser599d5e22020-03-06 10:23:29 +0100968
969 # Wait for Tiller to be up and running. If timeout expires, continue installing
beierlma4a37f72020-06-26 12:55:01 -0400970 tiller_timeout=120;
971 counter=0;
972 tiller_status=""
romeromonser599d5e22020-03-06 10:23:29 +0100973 while (( counter < tiller_timeout ))
974 do
975 tiller_status=`kubectl -n kube-system get deployment.apps/tiller-deploy --no-headers | awk '{print $2'}`
beierlma4a37f72020-06-26 12:55:01 -0400976 ( [ ! -z "$tiller_status" ] && [ $tiller_status == "1/1" ] ) && echo "Tiller ready" && break
977 counter=$((counter + 5))
978 sleep 5
romeromonser599d5e22020-03-06 10:23:29 +0100979 done
beierlma4a37f72020-06-26 12:55:01 -0400980 [ "$tiller_status" != "1/1" ] && echo "Tiller is NOT READY YET. Installation will continue"
romeromonser599d5e22020-03-06 10:23:29 +0100981 fi
982}
983
vijaynag8339ed22019-07-25 17:10:58 +0530984function parse_yaml() {
vijaynag8339ed22019-07-25 17:10:58 +0530985 TAG=$1
garciadeblas7f1e1042020-11-30 14:07:03 +0000986 shift
987 services=$@
988 for module in $services; do
989 if [ "$module" == "pla" ]; then
990 if [ -n "$INSTALL_PLA" ]; then
991 echo "Updating K8s manifest file from opensourcemano\/${module}:.* to ${DOCKER_REGISTRY_URL}${DOCKER_USER}\/${module}:${TAG}"
garciadeblasa6c78db2020-12-17 21:48:24 +0000992 $WORKDIR_SUDO sed -i "s#opensourcemano/pla:.*#${DOCKER_REGISTRY_URL}${DOCKER_USER}/pla:${TAG}#g" ${OSM_DOCKER_WORK_DIR}/osm_pla/pla.yaml
garciadeblas7f1e1042020-11-30 14:07:03 +0000993 fi
994 else
995 echo "Updating K8s manifest file from opensourcemano\/${module}:.* to ${DOCKER_REGISTRY_URL}${DOCKER_USER}\/${module}:${TAG}"
garciadeblase7edc1d2020-12-17 17:17:35 +0100996 $WORKDIR_SUDO sed -i "s#opensourcemano/${module}:.*#${DOCKER_REGISTRY_URL}${DOCKER_USER}/${module}:${TAG}#g" ${OSM_K8S_WORK_DIR}/${module}.yaml
garciadeblas7f1e1042020-11-30 14:07:03 +0000997 fi
vijaynag8339ed22019-07-25 17:10:58 +0530998 done
garciadeblas7f1e1042020-11-30 14:07:03 +0000999}
1000
1001function update_manifest_files() {
garciadeblase7edc1d2020-12-17 17:17:35 +01001002 if [ -n "$NGUI" ]; then
1003 osm_services="nbi lcm ro pol mon ng-ui keystone pla"
1004 else
1005 osm_services="nbi lcm ro pol mon light-ui keystone pla"
1006 fi
garciadeblas7f1e1042020-11-30 14:07:03 +00001007 list_of_services=""
1008 for module in $osm_services; do
1009 module_upper="${module^^}"
1010 if [ "$module_upper" == "LIGHT-UI" ]; then
1011 module_upper="LW-UI"
1012 fi
1013 if ! echo $TO_REBUILD | grep -q $module_upper ; then
1014 list_of_services="$list_of_services $module"
1015 fi
1016 done
1017 list_of_services_to_rebuild=$(echo ${TO_REBUILD,,} |sed "s/lw-ui/light-ui/g")
garciadeblase7edc1d2020-12-17 17:17:35 +01001018 if [ ! "$OSM_DOCKER_TAG" == "9" ]; then
garciadeblas7f1e1042020-11-30 14:07:03 +00001019 parse_yaml $OSM_DOCKER_TAG $list_of_services
1020 fi
1021 if [ -n "$MODULE_DOCKER_TAG" ]; then
1022 parse_yaml $MODULE_DOCKER_TAG $list_of_services_to_rebuild
1023 fi
vijaynag8339ed22019-07-25 17:10:58 +05301024}
1025
1026function namespace_vol() {
David Garciaa1376012020-10-19 15:42:42 +02001027 osm_services="nbi lcm ro pol mon kafka mysql prometheus"
vijaynag8339ed22019-07-25 17:10:58 +05301028 for osm in $osm_services; do
garciadeblas4a9adcd2020-07-03 15:32:05 +00001029 $WORKDIR_SUDO sed -i "s#path: /var/lib/osm#path: $OSM_NAMESPACE_VOL#g" $OSM_K8S_WORK_DIR/$osm.yaml
vijaynag8339ed22019-07-25 17:10:58 +05301030 done
1031}
1032
garciadeblasa3e26612018-05-30 17:58:55 +02001033function init_docker_swarm() {
garciadeblasd8bc5c32018-05-09 17:37:56 +02001034 if [ "${DEFAULT_MTU}" != "1500" ]; then
1035 DOCKER_NETS=`sg docker -c "docker network list" | awk '{print $2}' | egrep -v "^ID$" | paste -d " " -s`
1036 DOCKER_GW_NET=`sg docker -c "docker network inspect ${DOCKER_NETS}" | grep Subnet | awk -F\" '{print $4}' | egrep "^172" | sort -u | tail -1 | awk -F\. '{if ($2 != 255) print $1"."$2+1"."$3"."$4; else print "-1";}'`
1037 sg docker -c "docker network create --subnet ${DOCKER_GW_NET} --opt com.docker.network.bridge.name=docker_gwbridge --opt com.docker.network.bridge.enable_icc=false --opt com.docker.network.bridge.enable_ip_masquerade=true --opt com.docker.network.driver.mtu=${DEFAULT_MTU} docker_gwbridge"
1038 fi
garciadeblas5b857d32018-05-24 18:37:58 +02001039 sg docker -c "docker swarm init --advertise-addr ${DEFAULT_IP}"
garciadeblasa3e26612018-05-30 17:58:55 +02001040 return 0
1041}
1042
Mike Marchettib8420852018-09-13 13:45:06 -04001043function create_docker_network() {
1044 echo "creating network"
1045 sg docker -c "docker network create --driver=overlay --attachable --opt com.docker.network.driver.mtu=${DEFAULT_MTU} net${OSM_STACK_NAME}"
1046 echo "creating network DONE"
1047}
1048
garciadeblasa3e26612018-05-30 17:58:55 +02001049function deploy_lightweight() {
Mike Marchettib8420852018-09-13 13:45:06 -04001050
garciadeblasa3e26612018-05-30 17:58:55 +02001051 echo "Deploying lightweight build"
Mike Marchettib8420852018-09-13 13:45:06 -04001052 OSM_NBI_PORT=9999
1053 OSM_RO_PORT=9090
Eduardo Sousa09a1e972018-09-21 11:06:32 +01001054 OSM_KEYSTONE_PORT=5000
Mike Marchettib8420852018-09-13 13:45:06 -04001055 OSM_UI_PORT=80
lavadoafa54c72018-10-05 09:28:28 -05001056 OSM_MON_PORT=8662
lavado60216242018-10-10 23:44:28 +02001057 OSM_PROM_PORT=9090
garciadeblasa7b27dc2019-12-04 15:06:55 +01001058 OSM_PROM_CADVISOR_PORT=8080
lavado60216242018-10-10 23:44:28 +02001059 OSM_PROM_HOSTPORT=9091
lavado6ad812e2019-11-29 10:58:58 -05001060 OSM_GRAFANA_PORT=3000
Eduardo Sousae00c8f92018-10-08 10:36:17 +01001061 [ -n "$INSTALL_ELK" ] && OSM_ELK_PORT=5601
lavado6ad812e2019-11-29 10:58:58 -05001062 #[ -n "$INSTALL_PERFMON" ] && OSM_PM_PORT=3000
lavado60216242018-10-10 23:44:28 +02001063
Mike Marchettib8420852018-09-13 13:45:06 -04001064 if [ -n "$NO_HOST_PORTS" ]; then
1065 OSM_PORTS+=(OSM_NBI_PORTS=$OSM_NBI_PORT)
1066 OSM_PORTS+=(OSM_RO_PORTS=$OSM_RO_PORT)
Eduardo Sousa09a1e972018-09-21 11:06:32 +01001067 OSM_PORTS+=(OSM_KEYSTONE_PORTS=$OSM_KEYSTONE_PORT)
Mike Marchettib8420852018-09-13 13:45:06 -04001068 OSM_PORTS+=(OSM_UI_PORTS=$OSM_UI_PORT)
lavadoafa54c72018-10-05 09:28:28 -05001069 OSM_PORTS+=(OSM_MON_PORTS=$OSM_MON_PORT)
lavado60216242018-10-10 23:44:28 +02001070 OSM_PORTS+=(OSM_PROM_PORTS=$OSM_PROM_PORT)
garciadeblasa7b27dc2019-12-04 15:06:55 +01001071 OSM_PORTS+=(OSM_PROM_CADVISOR_PORTS=$OSM_PROM_CADVISOR_PORT)
lavado6ad812e2019-11-29 10:58:58 -05001072 OSM_PORTS+=(OSM_GRAFANA_PORTS=$OSM_GRAFANA_PORT)
1073 #[ -n "$INSTALL_PERFMON" ] && OSM_PORTS+=(OSM_PM_PORTS=$OSM_PM_PORT)
Eduardo Sousae00c8f92018-10-08 10:36:17 +01001074 [ -n "$INSTALL_ELK" ] && OSM_PORTS+=(OSM_ELK_PORTS=$OSM_ELK_PORT)
Mike Marchettib8420852018-09-13 13:45:06 -04001075 else
1076 OSM_PORTS+=(OSM_NBI_PORTS=$OSM_NBI_PORT:$OSM_NBI_PORT)
1077 OSM_PORTS+=(OSM_RO_PORTS=$OSM_RO_PORT:$OSM_RO_PORT)
Eduardo Sousa09a1e972018-09-21 11:06:32 +01001078 OSM_PORTS+=(OSM_KEYSTONE_PORTS=$OSM_KEYSTONE_PORT:$OSM_KEYSTONE_PORT)
Mike Marchettib8420852018-09-13 13:45:06 -04001079 OSM_PORTS+=(OSM_UI_PORTS=$OSM_UI_PORT:$OSM_UI_PORT)
lavadoafa54c72018-10-05 09:28:28 -05001080 OSM_PORTS+=(OSM_MON_PORTS=$OSM_MON_PORT:$OSM_MON_PORT)
lavado60216242018-10-10 23:44:28 +02001081 OSM_PORTS+=(OSM_PROM_PORTS=$OSM_PROM_HOSTPORT:$OSM_PROM_PORT)
garciadeblasa7b27dc2019-12-04 15:06:55 +01001082 OSM_PORTS+=(OSM_PROM_CADVISOR_PORTS=$OSM_PROM_CADVISOR_PORT:$OSM_PROM_CADVISOR_PORT)
lavado6ad812e2019-11-29 10:58:58 -05001083 OSM_PORTS+=(OSM_GRAFANA_PORTS=$OSM_GRAFANA_PORT:$OSM_GRAFANA_PORT)
1084 #[ -n "$INSTALL_PERFMON" ] && OSM_PORTS+=(OSM_PM_PORTS=$OSM_PM_PORT:$OSM_PM_PORT)
Eduardo Sousae00c8f92018-10-08 10:36:17 +01001085 [ -n "$INSTALL_ELK" ] && OSM_PORTS+=(OSM_ELK_PORTS=$OSM_ELK_PORT:$OSM_ELK_PORT)
Mike Marchettib8420852018-09-13 13:45:06 -04001086 fi
1087 echo "export ${OSM_PORTS[@]}" | $WORKDIR_SUDO tee $OSM_DOCKER_WORK_DIR/osm_ports.sh
1088 echo "export OSM_NETWORK=net${OSM_STACK_NAME}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
Mike Marchetti13d76c82018-09-19 15:00:36 -04001089 echo "export TAG=${OSM_DOCKER_TAG}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
Mike Marchettida8a9c42018-10-01 15:25:15 -04001090 echo "export DOCKER_USER=${DOCKER_USER}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
Benjamin Diazaa0af712018-10-04 14:02:34 -03001091 echo "export KAFKA_TAG=${KAFKA_TAG}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
lavado60216242018-10-10 23:44:28 +02001092 echo "export PROMETHEUS_TAG=${PROMETHEUS_TAG}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
lavado9a8df7c2018-10-24 09:35:34 -05001093 echo "export KEYSTONEDB_TAG=${KEYSTONEDB_TAG}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
lavado6ad812e2019-11-29 10:58:58 -05001094 echo "export PROMETHEUS_CADVISOR_TAG=${PROMETHEUS_CADVISOR_TAG}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
1095 echo "export GRAFANA_TAG=${GRAFANA_TAG}" | $WORKDIR_SUDO tee --append $OSM_DOCKER_WORK_DIR/osm_ports.sh
Benjamin Diazaa0af712018-10-04 14:02:34 -03001096
Mike Marchettib8420852018-09-13 13:45:06 -04001097 pushd $OSM_DOCKER_WORK_DIR
magnussonl1bbe9452020-02-25 13:43:17 +01001098 if [ -n "$INSTALL_PLA" ]; then
beierlma4a37f72020-06-26 12:55:01 -04001099 track deploy_osm_pla
1100 sg docker -c ". ./osm_ports.sh; docker stack deploy -c $OSM_DOCKER_WORK_DIR/docker-compose.yaml -c $OSM_DOCKER_WORK_DIR/docker-compose-ui.yaml -c $OSM_DOCKER_WORK_DIR/osm_pla/docker-compose.yaml $OSM_STACK_NAME"
magnussonl1bbe9452020-02-25 13:43:17 +01001101 else
beierlma4a37f72020-06-26 12:55:01 -04001102 sg docker -c ". ./osm_ports.sh; docker stack deploy -c $OSM_DOCKER_WORK_DIR/docker-compose.yaml -c $OSM_DOCKER_WORK_DIR/docker-compose-ui.yaml $OSM_STACK_NAME"
magnussonl1bbe9452020-02-25 13:43:17 +01001103 fi
Mike Marchettib8420852018-09-13 13:45:06 -04001104 popd
1105
garciadeblasd8bc5c32018-05-09 17:37:56 +02001106 echo "Finished deployment of lightweight build"
1107}
1108
garciadeblas6c66abf2018-05-16 14:46:19 +02001109function deploy_elk() {
garciadeblase2aebfe2018-07-06 14:11:20 +02001110 echo "Pulling docker images for ELK"
lavado53eb8f52018-11-16 12:58:23 -05001111 sg docker -c "docker pull docker.elastic.co/elasticsearch/elasticsearch-oss:${ELASTIC_VERSION}" || FATAL "cannot get elasticsearch docker image"
1112 sg docker -c "docker pull docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION}" || FATAL "cannot get metricbeat docker image"
1113 sg docker -c "docker pull docker.elastic.co/beats/filebeat:${ELASTIC_VERSION}" || FATAL "cannot get filebeat docker image"
1114 sg docker -c "docker pull docker.elastic.co/kibana/kibana-oss:${ELASTIC_VERSION}" || FATAL "cannot get kibana docker image"
lavado4e8662c2018-11-28 11:28:14 -05001115 sg docker -c "docker pull bobrik/curator:${ELASTIC_CURATOR_VERSION}" || FATAL "cannot get curator docker image"
garciadeblase2aebfe2018-07-06 14:11:20 +02001116 echo "Finished pulling elk docker images"
Mike Marchettib8420852018-09-13 13:45:06 -04001117 $WORKDIR_SUDO mkdir -p "$OSM_DOCKER_WORK_DIR/osm_elk"
1118 $WORKDIR_SUDO cp -b ${OSM_DEVOPS}/installers/docker/osm_elk/* $OSM_DOCKER_WORK_DIR/osm_elk
garciadeblas5b857d32018-05-24 18:37:58 +02001119 remove_stack osm_elk
garciadeblas6c66abf2018-05-16 14:46:19 +02001120 echo "Deploying ELK stack"
Mike Marchettib8420852018-09-13 13:45:06 -04001121 sg docker -c "OSM_NETWORK=net${OSM_STACK_NAME} docker stack deploy -c $OSM_DOCKER_WORK_DIR/osm_elk/docker-compose.yml osm_elk"
garciadeblas6c66abf2018-05-16 14:46:19 +02001122 echo "Waiting for ELK stack to be up and running"
1123 time=0
garciadeblase2aebfe2018-07-06 14:11:20 +02001124 step=5
1125 timelength=40
garciadeblas6c66abf2018-05-16 14:46:19 +02001126 elk_is_up=1
1127 while [ $time -le $timelength ]; do
garciadeblase2aebfe2018-07-06 14:11:20 +02001128 if [[ $(curl -f -XGET http://127.0.0.1:5601/status -I 2>/dev/null | grep "HTTP/1.1 200 OK" | wc -l ) -eq 1 ]]; then
garciadeblas6c66abf2018-05-16 14:46:19 +02001129 elk_is_up=0
1130 break
1131 fi
1132 sleep $step
1133 time=$((time+step))
1134 done
1135 if [ $elk_is_up -eq 0 ]; then
1136 echo "ELK is up and running. Trying to create index pattern..."
1137 #Create index pattern
1138 curl -f -XPOST -H "Content-Type: application/json" -H "kbn-xsrf: anything" \
lavado53eb8f52018-11-16 12:58:23 -05001139 "http://127.0.0.1:5601/api/saved_objects/index-pattern/filebeat-*" \
1140 -d"{\"attributes\":{\"title\":\"filebeat-*\",\"timeFieldName\":\"@timestamp\"}}" 2>/dev/null
garciadeblas6c66abf2018-05-16 14:46:19 +02001141 #Make it the default index
garciadeblase2aebfe2018-07-06 14:11:20 +02001142 curl -f -XPOST -H "Content-Type: application/json" -H "kbn-xsrf: anything" \
garciadeblas5b857d32018-05-24 18:37:58 +02001143 "http://127.0.0.1:5601/api/kibana/settings/defaultIndex" \
lavado53eb8f52018-11-16 12:58:23 -05001144 -d"{\"value\":\"filebeat-*\"}" 2>/dev/null
garciadeblas6c66abf2018-05-16 14:46:19 +02001145 else
1146 echo "Cannot connect to Kibana to create index pattern."
1147 echo "Once Kibana is running, you can use the following instructions to create index pattern:"
1148 echo 'curl -f -XPOST -H "Content-Type: application/json" -H "kbn-xsrf: anything" \
lavado53eb8f52018-11-16 12:58:23 -05001149 "http://127.0.0.1:5601/api/saved_objects/index-pattern/filebeat-*" \
1150 -d"{\"attributes\":{\"title\":\"filebeat-*\",\"timeFieldName\":\"@timestamp\"}}"'
garciadeblas6c66abf2018-05-16 14:46:19 +02001151 echo 'curl -XPOST -H "Content-Type: application/json" -H "kbn-xsrf: anything" \
garciadeblas5b857d32018-05-24 18:37:58 +02001152 "http://127.0.0.1:5601/api/kibana/settings/defaultIndex" \
lavado53eb8f52018-11-16 12:58:23 -05001153 -d"{\"value\":\"filebeat-*\"}"'
garciadeblas6c66abf2018-05-16 14:46:19 +02001154 fi
1155 echo "Finished deployment of ELK stack"
1156 return 0
1157}
1158
garciadeblase92a18d2020-07-03 16:24:23 +00001159function add_local_k8scluster() {
1160 /usr/bin/osm --all-projects vim-create \
1161 --name _system-osm-vim \
1162 --account_type dummy \
1163 --auth_url http://dummy \
1164 --user osm --password osm --tenant osm \
1165 --description "dummy" \
1166 --config '{management_network_name: mgmt}'
1167 /usr/bin/osm --all-projects k8scluster-add \
1168 --creds ${HOME}/.kube/config \
1169 --vim _system-osm-vim \
1170 --k8s-nets '{"net1": null}' \
1171 --version '1.15' \
1172 --description "OSM Internal Cluster" \
1173 _system-osm-k8s
1174}
1175
garciadeblasd8bc5c32018-05-09 17:37:56 +02001176function install_lightweight() {
garciadeblas183e5802018-12-13 18:20:54 +01001177 track checkingroot
garciadeblasd13a8aa2018-05-18 15:24:51 +02001178 [ "$USER" == "root" ] && FATAL "You are running the installer as root. The installer is prepared to be executed as a normal user with sudo privileges."
garciadeblas183e5802018-12-13 18:20:54 +01001179 track noroot
vijaynag8339ed22019-07-25 17:10:58 +05301180
1181 if [ -n "$KUBERNETES" ]; then
1182 [ -z "$ASSUME_YES" ] && ! ask_user "The installation will do the following
1183 1. Install and configure LXD
1184 2. Install juju
1185 3. Install docker CE
1186 4. Disable swap space
1187 5. Install and initialize Kubernetes
1188 as pre-requirements.
1189 Do you want to proceed (Y/n)? " y && echo "Cancelled!" && exit 1
1190
1191 else
1192 [ -z "$ASSUME_YES" ] && ! ask_user "The installation will configure LXD, install juju, install docker CE and init a docker swarm, as pre-requirements. Do you want to proceed (Y/n)? " y && echo "Cancelled!" && exit 1
1193 fi
garciadeblasfae5e972018-06-12 18:27:11 +02001194 track proceed
vijaynag8339ed22019-07-25 17:10:58 +05301195
garciadeblasd8bc5c32018-05-09 17:37:56 +02001196 echo "Installing lightweight build of OSM"
1197 LWTEMPDIR="$(mktemp -d -q --tmpdir "installosmlight.XXXXXX")"
1198 trap 'rm -rf "${LWTEMPDIR}"' EXIT
tierno7d8f12e2020-05-18 14:17:41 +00001199 DEFAULT_IF=$(ip route list|awk '$1=="default" {print $5; exit}')
1200 [ -z "$DEFAULT_IF" ] && DEFAULT_IF=$(route -n |awk '$1~/^0.0.0.0/ {print $8; exit}')
garciadeblas8cd60772018-06-02 08:38:17 +02001201 [ -z "$DEFAULT_IF" ] && FATAL "Not possible to determine the interface with the default route 0.0.0.0"
tierno7d8f12e2020-05-18 14:17:41 +00001202 DEFAULT_IP=`ip -o -4 a |grep ${DEFAULT_IF} |awk '{split($4,a,"/"); print a[1]}'`
garciadeblas8cd60772018-06-02 08:38:17 +02001203 [ -z "$DEFAULT_IP" ] && FATAL "Not possible to determine the IP address of the interface with the default route"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001204 DEFAULT_MTU=$(ip addr show ${DEFAULT_IF} | perl -ne 'if (/mtu\s(\d+)/) {print $1;}')
Mike Marchettib8420852018-09-13 13:45:06 -04001205
1206 # if no host is passed in, we need to install lxd/juju, unless explicilty asked not to
David Garcia79f4f532020-04-07 12:59:34 +02001207 if [ -z "$OSM_VCA_HOST" ] && [ -z "$INSTALL_NOLXD" ] && [ -z "$LXD_CLOUD_FILE" ]; then
David Garcia50d786e2020-03-30 14:49:40 +02001208 need_packages_lw="snapd"
garciadeblasd41f5482018-05-25 10:25:06 +02001209 echo -e "Checking required packages: $need_packages_lw"
1210 dpkg -l $need_packages_lw &>/dev/null \
1211 || ! echo -e "One or several required packages are not installed. Updating apt cache requires root privileges." \
1212 || sudo apt-get update \
1213 || FATAL "failed to run apt-get update"
1214 dpkg -l $need_packages_lw &>/dev/null \
1215 || ! echo -e "Installing $need_packages_lw requires root privileges." \
1216 || sudo apt-get install -y $need_packages_lw \
1217 || FATAL "failed to install $need_packages_lw"
David Garcia50d786e2020-03-30 14:49:40 +02001218 install_lxd
garciadeblasd41f5482018-05-25 10:25:06 +02001219 fi
David Garcia79f4f532020-04-07 12:59:34 +02001220
garciadeblasfae5e972018-06-12 18:27:11 +02001221 track prereqok
Mike Marchettib8420852018-09-13 13:45:06 -04001222
David Garcia6cbfee12020-10-23 10:40:20 +02001223 [ -n "$INSTALL_NODOCKER" ] || (install_docker_ce && track docker_ce)
1224
1225 echo "Creating folders for installation"
1226 [ ! -d "$OSM_DOCKER_WORK_DIR" ] && $WORKDIR_SUDO mkdir -p $OSM_DOCKER_WORK_DIR
1227 [ ! -d "$OSM_DOCKER_WORK_DIR/osm_pla" -a -n "$INSTALL_PLA" ] && $WORKDIR_SUDO mkdir -p $OSM_DOCKER_WORK_DIR/osm_pla
1228 [ -n "$KUBERNETES" ] && $WORKDIR_SUDO cp -b $OSM_DEVOPS/installers/docker/cluster-config.yaml $OSM_DOCKER_WORK_DIR/cluster-config.yaml
1229
1230 #Installs Kubernetes
1231 if [ -n "$KUBERNETES" ]; then
1232 install_kube
1233 track install_k8s
1234 init_kubeadm $OSM_DOCKER_WORK_DIR/cluster-config.yaml
1235 kube_config_dir
1236 track init_k8s
1237 if [ -n "$INSTALL_K8S_MONITOR" ]; then
1238 # uninstall OSM MONITORING
1239 uninstall_k8s_monitoring
1240 track uninstall_k8s_monitoring
1241 fi
1242 #remove old namespace
1243 remove_k8s_namespace $OSM_STACK_NAME
1244 deploy_cni_provider
1245 taint_master_node
1246 install_k8s_storageclass
1247 track k8s_storageclass
1248 install_k8s_metallb
1249 track k8s_metallb
1250 else
1251 #install_docker_compose
1252 [ -n "$INSTALL_NODOCKER" ] || init_docker_swarm
1253 track docker_swarm
1254 fi
1255
vijaynag8339ed22019-07-25 17:10:58 +05301256 [ -z "$INSTALL_NOJUJU" ] && install_juju
garciadeblas183e5802018-12-13 18:20:54 +01001257 track juju_install
vijaynag8339ed22019-07-25 17:10:58 +05301258
lavadoe07b1642018-10-25 10:58:34 -05001259 if [ -z "$OSM_VCA_HOST" ]; then
David Garcia404ae122020-04-28 11:47:55 +02001260 if [ -z "$CONTROLLER_NAME" ]; then
David Garcia6cbfee12020-10-23 10:40:20 +02001261
1262 if [ -n "$KUBERNETES" ]; then
1263 juju_createcontroller_k8s
1264 juju_addlxd_cloud
1265 else
1266 if [ -n "$LXD_CLOUD_FILE" ]; then
1267 [ -z "$LXD_CRED_FILE" ] && FATAL "The installer needs the LXD credential yaml if the LXD is external"
1268 OSM_VCA_CLOUDNAME="lxd-cloud"
1269 juju add-cloud $OSM_VCA_CLOUDNAME $LXD_CLOUD_FILE --force || juju update-cloud $OSM_VCA_CLOUDNAME --client -f $LXD_CLOUD_FILE
1270 juju add-credential $OSM_VCA_CLOUDNAME -f $LXD_CRED_FILE || juju update-credential $OSM_VCA_CLOUDNAME lxd-cloud-creds -f $LXD_CRED_FILE
1271 fi
1272 juju_createcontroller
1273 juju_createproxy
David Garcia404ae122020-04-28 11:47:55 +02001274 fi
David Garcia404ae122020-04-28 11:47:55 +02001275 else
1276 OSM_VCA_CLOUDNAME="lxd-cloud"
1277 if [ -n "$LXD_CLOUD_FILE" ]; then
1278 [ -z "$LXD_CRED_FILE" ] && FATAL "The installer needs the LXD credential yaml if the LXD is external"
1279 juju add-cloud -c $CONTROLLER_NAME $OSM_VCA_CLOUDNAME $LXD_CLOUD_FILE --force || juju update-cloud lxd-cloud -c $CONTROLLER_NAME -f $LXD_CLOUD_FILE
1280 juju add-credential -c $CONTROLLER_NAME $OSM_VCA_CLOUDNAME -f $LXD_CRED_FILE || juju update-credential lxd-cloud -c $CONTROLLER_NAME -f $LXD_CRED_FILE
1281 else
1282 mkdir -p ~/.osm
1283 cat << EOF > ~/.osm/lxd-cloud.yaml
1284clouds:
1285 lxd-cloud:
1286 type: lxd
1287 auth-types: [certificate]
1288 endpoint: "https://$DEFAULT_IP:8443"
1289 config:
1290 ssl-hostname-verification: false
1291EOF
1292 openssl req -nodes -new -x509 -keyout ~/.osm/client.key -out ~/.osm/client.crt -days 365 -subj "/C=FR/ST=Nice/L=Nice/O=ETSI/OU=OSM/CN=osm.etsi.org"
1293 local server_cert=`cat /var/snap/lxd/common/lxd/server.crt | sed 's/^/ /'`
1294 local client_cert=`cat ~/.osm/client.crt | sed 's/^/ /'`
1295 local client_key=`cat ~/.osm/client.key | sed 's/^/ /'`
1296 cat << EOF > ~/.osm/lxd-credentials.yaml
1297credentials:
1298 lxd-cloud:
1299 lxd-cloud:
1300 auth-type: certificate
1301 server-cert: |
1302$server_cert
1303 client-cert: |
1304$client_cert
1305 client-key: |
1306$client_key
1307EOF
1308 lxc config trust add local: ~/.osm/client.crt
1309 juju add-cloud -c $CONTROLLER_NAME $OSM_VCA_CLOUDNAME ~/.osm/lxd-cloud.yaml --force || juju update-cloud lxd-cloud -c $CONTROLLER_NAME -f ~/.osm/lxd-cloud.yaml
1310 juju add-credential -c $CONTROLLER_NAME $OSM_VCA_CLOUDNAME -f ~/.osm/lxd-credentials.yaml || juju update-credential lxd-cloud -c $CONTROLLER_NAME -f ~/.osm/lxd-credentials.yaml
1311 fi
1312 fi
1313 [ -z "$CONTROLLER_NAME" ] && OSM_VCA_HOST=`sg lxd -c "juju show-controller $OSM_STACK_NAME"|grep api-endpoints|awk -F\' '{print $2}'|awk -F\: '{print $1}'`
1314 [ -n "$CONTROLLER_NAME" ] && OSM_VCA_HOST=`juju show-controller $CONTROLLER_NAME |grep api-endpoints|awk -F\' '{print $2}'|awk -F\: '{print $1}'`
lavadoe07b1642018-10-25 10:58:34 -05001315 [ -z "$OSM_VCA_HOST" ] && FATAL "Cannot obtain juju controller IP address"
Mike Marchettib8420852018-09-13 13:45:06 -04001316 fi
garciadeblas183e5802018-12-13 18:20:54 +01001317 track juju_controller
vijaynag8339ed22019-07-25 17:10:58 +05301318
lavadoe07b1642018-10-25 10:58:34 -05001319 if [ -z "$OSM_VCA_SECRET" ]; then
David Garcia404ae122020-04-28 11:47:55 +02001320 [ -z "$CONTROLLER_NAME" ] && OSM_VCA_SECRET=$(parse_juju_password $OSM_STACK_NAME)
1321 [ -n "$CONTROLLER_NAME" ] && OSM_VCA_SECRET=$(parse_juju_password $CONTROLLER_NAME)
lavadoe07b1642018-10-25 10:58:34 -05001322 [ -z "$OSM_VCA_SECRET" ] && FATAL "Cannot obtain juju secret"
Mike Marchettib8420852018-09-13 13:45:06 -04001323 fi
garciadeblasaa3ddf42019-04-04 19:04:32 +02001324 if [ -z "$OSM_VCA_PUBKEY" ]; then
1325 OSM_VCA_PUBKEY=$(cat $HOME/.local/share/juju/ssh/juju_id_rsa.pub)
1326 [ -z "$OSM_VCA_PUBKEY" ] && FATAL "Cannot obtain juju public key"
1327 fi
garciadeblasfc5bb142019-12-10 10:49:12 +01001328 if [ -z "$OSM_VCA_CACERT" ]; then
David Garcia404ae122020-04-28 11:47:55 +02001329 [ -z "$CONTROLLER_NAME" ] && OSM_VCA_CACERT=$(juju controllers --format json | jq -r --arg controller $OSM_STACK_NAME '.controllers[$controller]["ca-cert"]' | base64 | tr -d \\n)
1330 [ -n "$CONTROLLER_NAME" ] && OSM_VCA_CACERT=$(juju controllers --format json | jq -r --arg controller $CONTROLLER_NAME '.controllers[$controller]["ca-cert"]' | base64 | tr -d \\n)
garciadeblasfc5bb142019-12-10 10:49:12 +01001331 [ -z "$OSM_VCA_CACERT" ] && FATAL "Cannot obtain juju CA certificate"
1332 fi
David Garcia6cbfee12020-10-23 10:40:20 +02001333
1334 # Set OSM_VCA_APIPROXY only when it is not a k8s installation
1335 if [ -z "$KUBERNETES" ]; then
1336 if [ -z "$OSM_VCA_APIPROXY" ]; then
1337 OSM_VCA_APIPROXY=$DEFAULT_IP
1338 [ -z "$OSM_VCA_APIPROXY" ] && FATAL "Cannot obtain juju api proxy"
1339 fi
1340 juju_createproxy
Adam Israel5ddc97f2019-09-03 18:11:12 -04001341 fi
garciadeblasfc5bb142019-12-10 10:49:12 +01001342 track juju
Adam Israel5ddc97f2019-09-03 18:11:12 -04001343
Benjamin Diazba2cca92018-11-08 21:07:15 -03001344 if [ -z "$OSM_DATABASE_COMMONKEY" ]; then
1345 OSM_DATABASE_COMMONKEY=$(generate_secret)
1346 [ -z "OSM_DATABASE_COMMONKEY" ] && FATAL "Cannot generate common db secret"
1347 fi
vijaynag8339ed22019-07-25 17:10:58 +05301348
David Garcia6cbfee12020-10-23 10:40:20 +02001349 # Deploy OSM services
Mike Marchettib8420852018-09-13 13:45:06 -04001350 [ -z "$DOCKER_NOBUILD" ] && generate_docker_images
garciadeblas6c66abf2018-05-16 14:46:19 +02001351 track docker_build
vijaynag8339ed22019-07-25 17:10:58 +05301352
beierlma4a37f72020-06-26 12:55:01 -04001353 if [ -n "$KUBERNETES" ]; then
1354 generate_k8s_manifest_files
1355 else
1356 generate_docker_compose_files
1357 fi
1358 track manifest_files
1359 generate_prometheus_grafana_files
garciadeblasd8bc5c32018-05-09 17:37:56 +02001360 generate_docker_env_files
beierlma4a37f72020-06-26 12:55:01 -04001361 track env_files
Mike Marchettib8420852018-09-13 13:45:06 -04001362
vijaynag8339ed22019-07-25 17:10:58 +05301363 if [ -n "$KUBERNETES" ]; then
David Garciaa1376012020-10-19 15:42:42 +02001364 deploy_charmed_services
vijaynag8339ed22019-07-25 17:10:58 +05301365 kube_secrets
garciadeblas7f1e1042020-11-30 14:07:03 +00001366 update_manifest_files
vijaynag8339ed22019-07-25 17:10:58 +05301367 namespace_vol
1368 deploy_osm_services
magnussonl1bbe9452020-02-25 13:43:17 +01001369 if [ -n "$INSTALL_PLA"]; then
1370 # optional PLA install
1371 deploy_osm_pla_service
beierlma4a37f72020-06-26 12:55:01 -04001372 track deploy_osm_pla
magnussonl1bbe9452020-02-25 13:43:17 +01001373 fi
vijaynag8339ed22019-07-25 17:10:58 +05301374 track deploy_osm_services_k8s
garciadeblasbfe419a2020-07-08 14:13:40 +00001375 install_helm
1376 track install_helm
garciadeblasb5a630f2020-03-05 18:32:16 +00001377 if [ -n "$INSTALL_K8S_MONITOR" ]; then
garciadeblasfc5bb142019-12-10 10:49:12 +01001378 # install OSM MONITORING
1379 install_k8s_monitoring
1380 track install_k8s_monitoring
1381 fi
vijaynag8339ed22019-07-25 17:10:58 +05301382 else
1383 # remove old stack
1384 remove_stack $OSM_STACK_NAME
1385 create_docker_network
1386 deploy_lightweight
1387 generate_osmclient_script
1388 track docker_deploy
lavado6ad812e2019-11-29 10:58:58 -05001389 install_prometheus_nodeexporter
garciadeblasfc5bb142019-12-10 10:49:12 +01001390 track nodeexporter
vijaynag8339ed22019-07-25 17:10:58 +05301391 [ -n "$INSTALL_VIMEMU" ] && install_vimemu && track vimemu
1392 [ -n "$INSTALL_ELK" ] && deploy_elk && track elk
vijaynag8339ed22019-07-25 17:10:58 +05301393 fi
1394
Mike Marchettib8420852018-09-13 13:45:06 -04001395 [ -z "$INSTALL_NOHOSTCLIENT" ] && install_osmclient
garciadeblas6c66abf2018-05-16 14:46:19 +02001396 track osmclient
beierlma4a37f72020-06-26 12:55:01 -04001397
garciadeblas4a9adcd2020-07-03 15:32:05 +00001398 echo -e "Checking OSM health state..."
1399 if [ -n "$KUBERNETES" ]; then
1400 $OSM_DEVOPS/installers/osm_health.sh -s ${OSM_STACK_NAME} -k || \
1401 echo -e "OSM is not healthy, but will probably converge to a healthy state soon." && \
1402 echo -e "Check OSM status with: kubectl -n ${OSM_STACK_NAME} get all" && \
1403 track osm_unhealthy
1404 else
1405 $OSM_DEVOPS/installers/osm_health.sh -s ${OSM_STACK_NAME} || \
1406 echo -e "OSM is not healthy, but will probably converge to a healthy state soon." && \
1407 echo -e "Check OSM status with: docker service ls; docker stack ps ${OSM_STACK_NAME}" && \
1408 track osm_unhealthy
1409 fi
1410 track after_healthcheck
vijaynag8339ed22019-07-25 17:10:58 +05301411
garciadeblase92a18d2020-07-03 16:24:23 +00001412 [ -n "$KUBERNETES" ] && add_local_k8scluster
1413 track add_local_k8scluster
1414
garciadeblasfa81f282020-12-15 00:32:13 +00001415 wget -q -O- https://osm-download.etsi.org/ftp/osm-9.0-nine/README2.txt &> /dev/null
garciadeblas6c66abf2018-05-16 14:46:19 +02001416 track end
garciadeblasd8bc5c32018-05-09 17:37:56 +02001417 return 0
1418}
1419
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001420function install_to_openstack() {
1421
1422 if [ -z "$2" ]; then
1423 FATAL "OpenStack installer requires a valid external network name"
1424 fi
1425
1426 # Install Pip for Python3
Antonio Marsicocd00aad2021-03-19 18:54:57 +01001427 $WORKDIR_SUDO apt install -y python3-pip python3-venv
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001428 $WORKDIR_SUDO -H LC_ALL=C python3 -m pip install -U pip
1429
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001430 # Create a venv to avoid conflicts with the host installation
1431 python3 -m venv $OPENSTACK_PYTHON_VENV
1432
1433 source $OPENSTACK_PYTHON_VENV/bin/activate
1434
Antonio Marsicocd00aad2021-03-19 18:54:57 +01001435 # Install Ansible, OpenStack client and SDK, latest openstack version supported is Train
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001436 python -m pip install -U wheel
Antonio Marsicocd00aad2021-03-19 18:54:57 +01001437 python -m pip install -U "python-openstackclient<=4.0.2" "openstacksdk>=0.12.0,<=0.36.2" "ansible>=2.10,<2.11"
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001438
1439 # Install the Openstack cloud module (ansible>=2.10)
1440 ansible-galaxy collection install openstack.cloud
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001441
1442 export ANSIBLE_CONFIG="$OSM_DEVOPS/installers/openstack/ansible.cfg"
1443
1444 OSM_INSTALLER_ARGS="${REPO_ARGS[@]}"
1445
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001446 ANSIBLE_VARS="external_network_name=$2 setup_volume=$3 server_name=$OPENSTACK_VM_NAME"
1447
1448 if [ -n "$OPENSTACK_SSH_KEY_FILE" ]; then
1449 ANSIBLE_VARS+=" key_file=$OPENSTACK_SSH_KEY_FILE"
1450 fi
1451
1452 if [ -n "$OPENSTACK_USERDATA_FILE" ]; then
1453 ANSIBLE_VARS+=" userdata_file=$OPENSTACK_USERDATA_FILE"
1454 fi
1455
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001456 # Execute the Ansible playbook based on openrc or clouds.yaml
1457 if [ -e "$1" ]; then
1458 . $1
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001459 ansible-playbook -e installer_args="\"$OSM_INSTALLER_ARGS\"" -e "$ANSIBLE_VARS" \
1460 $OSM_DEVOPS/installers/openstack/site.yml
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001461 else
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001462 ansible-playbook -e installer_args="\"$OSM_INSTALLER_ARGS\"" -e "$ANSIBLE_VARS" \
1463 -e cloud_name=$1 $OSM_DEVOPS/installers/openstack/site.yml
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001464 fi
1465
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001466 # Exit from venv
1467 deactivate
1468
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001469 return 0
1470}
1471
garciadeblasd8bc5c32018-05-09 17:37:56 +02001472function install_vimemu() {
peusterm76353e42018-05-08 13:56:05 +02001473 echo "\nInstalling vim-emu"
1474 EMUTEMPDIR="$(mktemp -d -q --tmpdir "installosmvimemu.XXXXXX")"
1475 trap 'rm -rf "${EMUTEMPDIR}"' EXIT
peusterma3a7d142020-02-07 10:12:29 +01001476 # install prerequisites (OVS is a must for the emulator to work)
1477 sudo apt-get install openvswitch-switch
garciadeblasd8bc5c32018-05-09 17:37:56 +02001478 # clone vim-emu repository (attention: branch is currently master only)
1479 echo "Cloning vim-emu repository ..."
peusterm76353e42018-05-08 13:56:05 +02001480 git clone https://osm.etsi.org/gerrit/osm/vim-emu.git $EMUTEMPDIR
garciadeblasd8bc5c32018-05-09 17:37:56 +02001481 # build vim-emu docker
1482 echo "Building vim-emu Docker container..."
Mike Marchettib8420852018-09-13 13:45:06 -04001483
1484 sg docker -c "docker build -t vim-emu-img -f $EMUTEMPDIR/Dockerfile --no-cache $EMUTEMPDIR/" || FATAL "cannot build vim-emu-img docker image"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001485 # start vim-emu container as daemon
1486 echo "Starting vim-emu Docker container 'vim-emu' ..."
peusterm76353e42018-05-08 13:56:05 +02001487 if [ -n "$INSTALL_LIGHTWEIGHT" ]; then
1488 # in lightweight mode, the emulator needs to be attached to netOSM
Mike Marchettib8420852018-09-13 13:45:06 -04001489 sg docker -c "docker run --name vim-emu -t -d --restart always --privileged --pid='host' --network=net${OSM_STACK_NAME} -v /var/run/docker.sock:/var/run/docker.sock vim-emu-img python examples/osm_default_daemon_topology_2_pop.py"
peusterm76353e42018-05-08 13:56:05 +02001490 else
1491 # classic build mode
Mike Marchettib8420852018-09-13 13:45:06 -04001492 sg docker -c "docker run --name vim-emu -t -d --restart always --privileged --pid='host' -v /var/run/docker.sock:/var/run/docker.sock vim-emu-img python examples/osm_default_daemon_topology_2_pop.py"
peusterm76353e42018-05-08 13:56:05 +02001493 fi
garciadeblasd8bc5c32018-05-09 17:37:56 +02001494 echo "Waiting for 'vim-emu' container to start ..."
1495 sleep 5
Mike Marchettib8420852018-09-13 13:45:06 -04001496 export VIMEMU_HOSTNAME=$(sg docker -c "docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' vim-emu")
garciadeblasd8bc5c32018-05-09 17:37:56 +02001497 echo "vim-emu running at ${VIMEMU_HOSTNAME} ..."
peusterm76353e42018-05-08 13:56:05 +02001498 # print vim-emu connection info
1499 echo -e "\nYou might be interested in adding the following vim-emu env variables to your .bashrc file:"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001500 echo " export VIMEMU_HOSTNAME=${VIMEMU_HOSTNAME}"
peusterm76353e42018-05-08 13:56:05 +02001501 echo -e "To add the emulated VIM to OSM you should do:"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001502 echo " osm vim-create --name emu-vim1 --user username --password password --auth_url http://${VIMEMU_HOSTNAME}:6001/v2.0 --tenant tenantName --account_type openstack"
1503}
1504
romeromonsere366b1a2019-11-19 19:49:26 +01001505function install_k8s_monitoring() {
1506 # install OSM monitoring
garciadeblasfc5bb142019-12-10 10:49:12 +01001507 $WORKDIR_SUDO chmod +x $OSM_DEVOPS/installers/k8s/*.sh
romeromonsere366b1a2019-11-19 19:49:26 +01001508 $WORKDIR_SUDO $OSM_DEVOPS/installers/k8s/install_osm_k8s_monitoring.sh
1509}
1510
1511function uninstall_k8s_monitoring() {
K Sai Kiran5e151f02019-12-11 14:50:09 +05301512 # uninstall OSM monitoring
romeromonsere366b1a2019-11-19 19:49:26 +01001513 $WORKDIR_SUDO $OSM_DEVOPS/installers/k8s/uninstall_osm_k8s_monitoring.sh
1514}
1515
garciadeblasd8bc5c32018-05-09 17:37:56 +02001516function dump_vars(){
1517 echo "DEVELOP=$DEVELOP"
1518 echo "INSTALL_FROM_SOURCE=$INSTALL_FROM_SOURCE"
1519 echo "UNINSTALL=$UNINSTALL"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001520 echo "UPDATE=$UPDATE"
1521 echo "RECONFIGURE=$RECONFIGURE"
1522 echo "TEST_INSTALLER=$TEST_INSTALLER"
1523 echo "INSTALL_VIMEMU=$INSTALL_VIMEMU"
magnussonl1bbe9452020-02-25 13:43:17 +01001524 echo "INSTALL_PLA=$INSTALL_PLA"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001525 echo "INSTALL_LXD=$INSTALL_LXD"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001526 echo "INSTALL_LIGHTWEIGHT=$INSTALL_LIGHTWEIGHT"
garciadeblas6c66abf2018-05-16 14:46:19 +02001527 echo "INSTALL_ONLY=$INSTALL_ONLY"
1528 echo "INSTALL_ELK=$INSTALL_ELK"
lavado6ad812e2019-11-29 10:58:58 -05001529 #echo "INSTALL_PERFMON=$INSTALL_PERFMON"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001530 echo "INSTALL_TO_OPENSTACK=$INSTALL_TO_OPENSTACK"
1531 echo "OPENSTACK_PUBLIC_NET_NAME=$OPENSTACK_PUBLIC_NET_NAME"
1532 echo "OPENSTACK_OPENRC_FILE_OR_CLOUD=$OPENSTACK_OPENRC_FILE_OR_CLOUD"
1533 echo "OPENSTACK_ATTACH_VOLUME=$OPENSTACK_ATTACH_VOLUME"
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001534 echo "OPENSTACK_SSH_KEY_FILE"="$OPENSTACK_SSH_KEY_FILE"
1535 echo "OPENSTACK_USERDATA_FILE"="$OPENSTACK_USERDATA_FILE"
1536 echo "OPENSTACK_VM_NAME"="$OPENSTACK_VM_NAME"
garciadeblasb5a630f2020-03-05 18:32:16 +00001537 echo "INSTALL_K8S_MONITOR=$INSTALL_K8S_MONITOR"
garciadeblas0e596bc2018-05-28 16:04:42 +02001538 echo "TO_REBUILD=$TO_REBUILD"
garciadeblasd41f5482018-05-25 10:25:06 +02001539 echo "INSTALL_NOLXD=$INSTALL_NOLXD"
garciadeblasa3e26612018-05-30 17:58:55 +02001540 echo "INSTALL_NODOCKER=$INSTALL_NODOCKER"
garciadeblas0d45bc82018-11-19 14:25:13 +01001541 echo "INSTALL_NOJUJU=$INSTALL_NOJUJU"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001542 echo "RELEASE=$RELEASE"
1543 echo "REPOSITORY=$REPOSITORY"
1544 echo "REPOSITORY_BASE=$REPOSITORY_BASE"
1545 echo "REPOSITORY_KEY=$REPOSITORY_KEY"
garciadeblas0d45bc82018-11-19 14:25:13 +01001546 echo "OSM_DEVOPS=$OSM_DEVOPS"
1547 echo "OSM_VCA_HOST=$OSM_VCA_HOST"
1548 echo "OSM_VCA_SECRET=$OSM_VCA_SECRET"
garciadeblasaa3ddf42019-04-04 19:04:32 +02001549 echo "OSM_VCA_PUBKEY=$OSM_VCA_PUBKEY"
garciadeblas0d45bc82018-11-19 14:25:13 +01001550 echo "NO_HOST_PORTS=$NO_HOST_PORTS"
1551 echo "DOCKER_NOBUILD=$DOCKER_NOBUILD"
1552 echo "WORKDIR_SUDO=$WORKDIR_SUDO"
1553 echo "OSM_WORK_DIR=$OSM_STACK_NAME"
1554 echo "OSM_DOCKER_TAG=$OSM_DOCKER_TAG"
1555 echo "DOCKER_USER=$DOCKER_USER"
1556 echo "OSM_STACK_NAME=$OSM_STACK_NAME"
1557 echo "PULL_IMAGES=$PULL_IMAGES"
vijaynag8339ed22019-07-25 17:10:58 +05301558 echo "KUBERNETES=$KUBERNETES"
vijaynag4b57d462020-06-08 14:23:10 +00001559 echo "NGUI=$NGUI"
garciadeblas7f1e1042020-11-30 14:07:03 +00001560 echo "DOCKER_REGISTRY_URL=$DOCKER_REGISTRY_URL"
1561 echo "DOCKER_PROXY_URL=$DOCKER_PROXY_URL"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001562 echo "SHOWOPTS=$SHOWOPTS"
1563 echo "Install from specific refspec (-b): $COMMIT_ID"
1564}
1565
1566function track(){
1567 ctime=`date +%s`
1568 duration=$((ctime - SESSION_ID))
1569 url="http://www.woopra.com/track/ce?project=osm.etsi.org&cookie=${SESSION_ID}"
1570 #url="${url}&ce_campaign_name=${CAMPAIGN_NAME}"
1571 event_name="bin"
garciadeblas6c66abf2018-05-16 14:46:19 +02001572 [ -z "$INSTALL_LIGHTWEIGHT" ] && [ -n "$INSTALL_FROM_SOURCE" ] && event_name="binsrc"
1573 [ -z "$INSTALL_LIGHTWEIGHT" ] && [ -n "$INSTALL_FROM_LXDIMAGES" ] && event_name="lxd"
1574 [ -n "$INSTALL_LIGHTWEIGHT" ] && event_name="lw"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001575 event_name="${event_name}_$1"
1576 url="${url}&event=${event_name}&ce_duration=${duration}"
1577 wget -q -O /dev/null $url
1578}
1579
garciadeblas453d4582020-12-16 19:03:10 +01001580function parse_docker_registry_url() {
1581 DOCKER_REGISTRY_USER=$(echo "$DOCKER_REGISTRY_URL" | awk '{split($1,a,"@"); split(a[1],b,":"); print b[1]}')
1582 DOCKER_REGISTRY_PASSWORD=$(echo "$DOCKER_REGISTRY_URL" | awk '{split($1,a,"@"); split(a[1],b,":"); print b[2]}')
1583 DOCKER_REGISTRY_URL=$(echo "$DOCKER_REGISTRY_URL" | awk '{split($1,a,"@"); print a[2]}')
1584}
1585
David Garciaea802d22021-02-10 17:43:15 +01001586JUJU_AGENT_VERSION=2.8.8
garciadeblasd8bc5c32018-05-09 17:37:56 +02001587UNINSTALL=""
1588DEVELOP=""
garciadeblasd8bc5c32018-05-09 17:37:56 +02001589UPDATE=""
1590RECONFIGURE=""
1591TEST_INSTALLER=""
1592INSTALL_LXD=""
1593SHOWOPTS=""
1594COMMIT_ID=""
1595ASSUME_YES=""
1596INSTALL_FROM_SOURCE=""
garciadeblasfa81f282020-12-15 00:32:13 +00001597RELEASE="ReleaseNINE"
Mike Marchettib8420852018-09-13 13:45:06 -04001598REPOSITORY="stable"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001599INSTALL_VIMEMU=""
magnussonl1bbe9452020-02-25 13:43:17 +01001600INSTALL_PLA=""
garciadeblasd8bc5c32018-05-09 17:37:56 +02001601LXD_REPOSITORY_BASE="https://osm-download.etsi.org/repository/osm/lxd"
1602LXD_REPOSITORY_PATH=""
1603INSTALL_LIGHTWEIGHT="y"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001604INSTALL_TO_OPENSTACK=""
1605OPENSTACK_OPENRC_FILE_OR_CLOUD=""
1606OPENSTACK_PUBLIC_NET_NAME=""
1607OPENSTACK_ATTACH_VOLUME="false"
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001608OPENSTACK_SSH_KEY_FILE=""
1609OPENSTACK_USERDATA_FILE=""
1610OPENSTACK_VM_NAME="server-osm"
1611OPENSTACK_PYTHON_VENV="$HOME/.virtual-envs/osm"
garciadeblas6c66abf2018-05-16 14:46:19 +02001612INSTALL_ONLY=""
1613INSTALL_ELK=""
garciadeblas0e596bc2018-05-28 16:04:42 +02001614TO_REBUILD=""
garciadeblasd41f5482018-05-25 10:25:06 +02001615INSTALL_NOLXD=""
garciadeblasa3e26612018-05-30 17:58:55 +02001616INSTALL_NODOCKER=""
Mike Marchettib8420852018-09-13 13:45:06 -04001617INSTALL_NOJUJU=""
garciadeblas45ed68a2020-07-06 15:37:59 +00001618KUBERNETES="y"
garciadeblasce7cf372020-10-16 11:56:38 +00001619NGUI="y"
garciadeblasb5a630f2020-03-05 18:32:16 +00001620INSTALL_K8S_MONITOR=""
garciadeblas0d45bc82018-11-19 14:25:13 +01001621INSTALL_NOHOSTCLIENT=""
garciadeblasd8bc5c32018-05-09 17:37:56 +02001622SESSION_ID=`date +%s`
1623OSM_DEVOPS=
lavadoe07b1642018-10-25 10:58:34 -05001624OSM_VCA_HOST=
1625OSM_VCA_SECRET=
garciadeblasaa3ddf42019-04-04 19:04:32 +02001626OSM_VCA_PUBKEY=
David Garcia79f4f532020-04-07 12:59:34 +02001627OSM_VCA_CLOUDNAME="localhost"
beierlma4a37f72020-06-26 12:55:01 -04001628OSM_VCA_K8S_CLOUDNAME="k8scloud"
Mike Marchettib8420852018-09-13 13:45:06 -04001629OSM_STACK_NAME=osm
1630NO_HOST_PORTS=""
1631DOCKER_NOBUILD=""
1632REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg"
garciadeblas870e60a2018-11-21 16:44:21 +01001633REPOSITORY_BASE="https://osm-download.etsi.org/repository/osm/debian"
Mike Marchettib8420852018-09-13 13:45:06 -04001634WORKDIR_SUDO=sudo
1635OSM_WORK_DIR="/etc/osm"
garciadeblas526f0fb2018-11-23 14:47:40 +01001636OSM_DOCKER_WORK_DIR="/etc/osm/docker"
vijaynag8339ed22019-07-25 17:10:58 +05301637OSM_K8S_WORK_DIR="${OSM_DOCKER_WORK_DIR}/osm_pods"
1638OSM_HOST_VOL="/var/lib/osm"
1639OSM_NAMESPACE_VOL="${OSM_HOST_VOL}/${OSM_STACK_NAME}"
Mike Marchetti13d76c82018-09-19 15:00:36 -04001640OSM_DOCKER_TAG=latest
garciadeblas0d45bc82018-11-19 14:25:13 +01001641DOCKER_USER=opensourcemano
1642PULL_IMAGES="y"
Benjamin Diazaa0af712018-10-04 14:02:34 -03001643KAFKA_TAG=2.11-1.0.2
lavado60216242018-10-10 23:44:28 +02001644PROMETHEUS_TAG=v2.4.3
lavado6ad812e2019-11-29 10:58:58 -05001645GRAFANA_TAG=latest
1646PROMETHEUS_NODE_EXPORTER_TAG=0.18.1
1647PROMETHEUS_CADVISOR_TAG=latest
lavado9a8df7c2018-10-24 09:35:34 -05001648KEYSTONEDB_TAG=10
Benjamin Diazba2cca92018-11-08 21:07:15 -03001649OSM_DATABASE_COMMONKEY=
lavado53eb8f52018-11-16 12:58:23 -05001650ELASTIC_VERSION=6.4.2
lavado4e8662c2018-11-28 11:28:14 -05001651ELASTIC_CURATOR_VERSION=5.5.4
vijaynag8339ed22019-07-25 17:10:58 +05301652POD_NETWORK_CIDR=10.244.0.0/16
1653K8S_MANIFEST_DIR="/etc/kubernetes/manifests"
1654RE_CHECK='^[a-z0-9]([-a-z0-9]*[a-z0-9])?$'
garciadeblas7f1e1042020-11-30 14:07:03 +00001655DOCKER_REGISTRY_URL=
1656DOCKER_PROXY_URL=
1657MODULE_DOCKER_TAG=
garciadeblasd8bc5c32018-05-09 17:37:56 +02001658
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001659while getopts ":b:r:c:n:k:u:R:D:o:O:m:N:H:S:s:w:t:U:P:A:l:L:K:d:p:T:f:F:-: hy" o; do
garciadeblasd8bc5c32018-05-09 17:37:56 +02001660 case "${o}" in
garciadeblasd8bc5c32018-05-09 17:37:56 +02001661 b)
1662 COMMIT_ID=${OPTARG}
garciadeblas0d45bc82018-11-19 14:25:13 +01001663 PULL_IMAGES=""
garciadeblasd8bc5c32018-05-09 17:37:56 +02001664 ;;
1665 r)
Mike Marchettib8420852018-09-13 13:45:06 -04001666 REPOSITORY="${OPTARG}"
1667 REPO_ARGS+=(-r "$REPOSITORY")
garciadeblasd8bc5c32018-05-09 17:37:56 +02001668 ;;
vijaynag8339ed22019-07-25 17:10:58 +05301669 c)
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001670 [ "${OPTARG}" == "swarm" ] && KUBERNETES="" && REPO_ARGS+=(-c "${OPTARG}") && continue
vijaynag8339ed22019-07-25 17:10:58 +05301671 [ "${OPTARG}" == "k8s" ] && KUBERNETES="y" && continue
1672 echo -e "Invalid argument for -i : ' $OPTARG'\n" >&2
1673 usage && exit 1
1674 ;;
vijaynag4b57d462020-06-08 14:23:10 +00001675 n)
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001676 [ "${OPTARG}" == "lwui" ] && NGUI="" && REPO_ARGS+=(-n "${OPTARG}") && continue
garciadeblasce7cf372020-10-16 11:56:38 +00001677 [ "${OPTARG}" == "ngui" ] && continue
vijaynag4b57d462020-06-08 14:23:10 +00001678 echo -e "Invalid argument for -n : ' $OPTARG'\n" >&2
1679 usage && exit 1
1680 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +02001681 k)
Mike Marchettib8420852018-09-13 13:45:06 -04001682 REPOSITORY_KEY="${OPTARG}"
1683 REPO_ARGS+=(-k "$REPOSITORY_KEY")
garciadeblasd8bc5c32018-05-09 17:37:56 +02001684 ;;
1685 u)
Mike Marchettib8420852018-09-13 13:45:06 -04001686 REPOSITORY_BASE="${OPTARG}"
1687 REPO_ARGS+=(-u "$REPOSITORY_BASE")
garciadeblasd8bc5c32018-05-09 17:37:56 +02001688 ;;
garciadeblas25e87d22020-01-31 14:27:29 +01001689 R)
1690 RELEASE="${OPTARG}"
1691 REPO_ARGS+=(-R "$RELEASE")
garciadeblas0d45bc82018-11-19 14:25:13 +01001692 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +02001693 D)
1694 OSM_DEVOPS="${OPTARG}"
1695 ;;
garciadeblas6c66abf2018-05-16 14:46:19 +02001696 o)
1697 INSTALL_ONLY="y"
1698 [ "${OPTARG}" == "vimemu" ] && INSTALL_VIMEMU="y" && continue
1699 [ "${OPTARG}" == "elk_stack" ] && INSTALL_ELK="y" && continue
garciadeblasb5a630f2020-03-05 18:32:16 +00001700 [ "${OPTARG}" == "k8s_monitor" ] && INSTALL_K8S_MONITOR="y" && continue
garciadeblas6c66abf2018-05-16 14:46:19 +02001701 ;;
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001702 O)
1703 INSTALL_TO_OPENSTACK="y"
1704 if [ -n "${OPTARG}" ]; then
1705 OPENSTACK_OPENRC_FILE_OR_CLOUD="${OPTARG}"
1706 else
1707 echo -e "Invalid argument for -O : ' $OPTARG'\n" >&2
1708 usage && exit 1
1709 fi
1710 ;;
Antonio Marsicoe3650fc2020-12-21 17:29:42 +01001711 f)
1712 OPENSTACK_SSH_KEY_FILE="${OPTARG}"
1713 ;;
1714 F)
1715 OPENSTACK_USERDATA_FILE="${OPTARG}"
1716 ;;
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001717 N)
1718 OPENSTACK_PUBLIC_NET_NAME="${OPTARG}"
1719 ;;
garciadeblas0e596bc2018-05-28 16:04:42 +02001720 m)
garciadeblas0e596bc2018-05-28 16:04:42 +02001721 [ "${OPTARG}" == "LW-UI" ] && TO_REBUILD="$TO_REBUILD LW-UI" && continue
garciadeblas7f1e1042020-11-30 14:07:03 +00001722 [ "${OPTARG}" == "NG-UI" ] && TO_REBUILD="$TO_REBUILD NG-UI" && continue
govindappa79e51b92019-05-22 12:15:21 +05301723 [ "${OPTARG}" == "NBI" ] && TO_REBUILD="$TO_REBUILD NBI" && continue
1724 [ "${OPTARG}" == "LCM" ] && TO_REBUILD="$TO_REBUILD LCM" && continue
1725 [ "${OPTARG}" == "RO" ] && TO_REBUILD="$TO_REBUILD RO" && continue
garciadeblas0e596bc2018-05-28 16:04:42 +02001726 [ "${OPTARG}" == "MON" ] && TO_REBUILD="$TO_REBUILD MON" && continue
govindappa79e51b92019-05-22 12:15:21 +05301727 [ "${OPTARG}" == "POL" ] && TO_REBUILD="$TO_REBUILD POL" && continue
garciadeblas7f1e1042020-11-30 14:07:03 +00001728 [ "${OPTARG}" == "PLA" ] && TO_REBUILD="$TO_REBUILD PLA" && continue
1729 [ "${OPTARG}" == "osmclient" ] && TO_REBUILD="$TO_REBUILD osmclient" && continue
garciadeblas0e596bc2018-05-28 16:04:42 +02001730 [ "${OPTARG}" == "KAFKA" ] && TO_REBUILD="$TO_REBUILD KAFKA" && continue
1731 [ "${OPTARG}" == "MONGO" ] && TO_REBUILD="$TO_REBUILD MONGO" && continue
govindappa79e51b92019-05-22 12:15:21 +05301732 [ "${OPTARG}" == "PROMETHEUS" ] && TO_REBUILD="$TO_REBUILD PROMETHEUS" && continue
garciadeblasfc5bb142019-12-10 10:49:12 +01001733 [ "${OPTARG}" == "PROMETHEUS-CADVISOR" ] && TO_REBUILD="$TO_REBUILD PROMETHEUS-CADVISOR" && continue
govindappa79e51b92019-05-22 12:15:21 +05301734 [ "${OPTARG}" == "KEYSTONE-DB" ] && TO_REBUILD="$TO_REBUILD KEYSTONE-DB" && continue
lavado6ad812e2019-11-29 10:58:58 -05001735 [ "${OPTARG}" == "GRAFANA" ] && TO_REBUILD="$TO_REBUILD GRAFANA" && continue
garciadeblas0e596bc2018-05-28 16:04:42 +02001736 [ "${OPTARG}" == "NONE" ] && TO_REBUILD="$TO_REBUILD NONE" && continue
1737 ;;
garciadeblas25e87d22020-01-31 14:27:29 +01001738 H)
1739 OSM_VCA_HOST="${OPTARG}"
1740 ;;
1741 S)
1742 OSM_VCA_SECRET="${OPTARG}"
1743 ;;
1744 s)
1745 OSM_STACK_NAME="${OPTARG}" && [ -n "$KUBERNETES" ] && [[ ! "${OPTARG}" =~ $RE_CHECK ]] && echo "Namespace $OPTARG is invalid. Regex used for validation is $RE_CHECK" && exit 0
1746 ;;
1747 w)
1748 # when specifying workdir, do not use sudo for access
1749 WORKDIR_SUDO=
1750 OSM_WORK_DIR="${OPTARG}"
1751 ;;
1752 t)
1753 OSM_DOCKER_TAG="${OPTARG}"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001754 REPO_ARGS+=(-t "$OSM_DOCKER_TAG")
garciadeblas25e87d22020-01-31 14:27:29 +01001755 ;;
1756 U)
1757 DOCKER_USER="${OPTARG}"
1758 ;;
1759 P)
1760 OSM_VCA_PUBKEY=$(cat ${OPTARG})
1761 ;;
1762 A)
1763 OSM_VCA_APIPROXY="${OPTARG}"
1764 ;;
David Garcia79f4f532020-04-07 12:59:34 +02001765 l)
1766 LXD_CLOUD_FILE="${OPTARG}"
1767 ;;
1768 L)
1769 LXD_CRED_FILE="${OPTARG}"
1770 ;;
David Garcia404ae122020-04-28 11:47:55 +02001771 K)
1772 CONTROLLER_NAME="${OPTARG}"
1773 ;;
garciadeblas7f1e1042020-11-30 14:07:03 +00001774 d)
1775 DOCKER_REGISTRY_URL="${OPTARG}"
1776 ;;
1777 p)
1778 DOCKER_PROXY_URL="${OPTARG}"
1779 ;;
1780 T)
1781 MODULE_DOCKER_TAG="${OPTARG}"
1782 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +02001783 -)
1784 [ "${OPTARG}" == "help" ] && usage && exit 0
garciadeblas0d45bc82018-11-19 14:25:13 +01001785 [ "${OPTARG}" == "source" ] && INSTALL_FROM_SOURCE="y" && PULL_IMAGES="" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +02001786 [ "${OPTARG}" == "develop" ] && DEVELOP="y" && continue
1787 [ "${OPTARG}" == "uninstall" ] && UNINSTALL="y" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +02001788 [ "${OPTARG}" == "update" ] && UPDATE="y" && continue
1789 [ "${OPTARG}" == "reconfigure" ] && RECONFIGURE="y" && continue
1790 [ "${OPTARG}" == "test" ] && TEST_INSTALLER="y" && continue
1791 [ "${OPTARG}" == "lxdinstall" ] && INSTALL_LXD="y" && continue
garciadeblasd41f5482018-05-25 10:25:06 +02001792 [ "${OPTARG}" == "nolxd" ] && INSTALL_NOLXD="y" && continue
garciadeblasa3e26612018-05-30 17:58:55 +02001793 [ "${OPTARG}" == "nodocker" ] && INSTALL_NODOCKER="y" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +02001794 [ "${OPTARG}" == "lightweight" ] && INSTALL_LIGHTWEIGHT="y" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +02001795 [ "${OPTARG}" == "vimemu" ] && INSTALL_VIMEMU="y" && continue
garciadeblas6c66abf2018-05-16 14:46:19 +02001796 [ "${OPTARG}" == "elk_stack" ] && INSTALL_ELK="y" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +02001797 [ "${OPTARG}" == "showopts" ] && SHOWOPTS="y" && continue
Mike Marchettib8420852018-09-13 13:45:06 -04001798 [ "${OPTARG}" == "nohostports" ] && NO_HOST_PORTS="y" && continue
1799 [ "${OPTARG}" == "nojuju" ] && INSTALL_NOJUJU="y" && continue
1800 [ "${OPTARG}" == "nodockerbuild" ] && DOCKER_NOBUILD="y" && continue
1801 [ "${OPTARG}" == "nohostclient" ] && INSTALL_NOHOSTCLIENT="y" && continue
garciadeblas0d45bc82018-11-19 14:25:13 +01001802 [ "${OPTARG}" == "pullimages" ] && continue
garciadeblasb5a630f2020-03-05 18:32:16 +00001803 [ "${OPTARG}" == "k8s_monitor" ] && INSTALL_K8S_MONITOR="y" && continue
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +01001804 [ "${OPTARG}" == "charmed" ] && CHARMED="y" && continue
1805 [ "${OPTARG}" == "bundle" ] && continue
Dominik Fleischmann7a97a4c2020-06-04 10:52:05 +02001806 [ "${OPTARG}" == "k8s" ] && continue
1807 [ "${OPTARG}" == "lxd" ] && continue
1808 [ "${OPTARG}" == "lxd-cred" ] && continue
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +01001809 [ "${OPTARG}" == "microstack" ] && continue
Dominik Fleischmannc63bed62020-09-25 12:17:54 +02001810 [ "${OPTARG}" == "vca" ] && continue
Dominik Fleischmannc57296f2020-06-09 11:45:08 +02001811 [ "${OPTARG}" == "ha" ] && continue
David Garcia69388c22020-05-07 12:14:19 +02001812 [ "${OPTARG}" == "tag" ] && continue
beierlmf2782c52020-11-05 17:04:05 -05001813 [ "${OPTARG}" == "registry" ] && continue
magnussonl1bbe9452020-02-25 13:43:17 +01001814 [ "${OPTARG}" == "pla" ] && INSTALL_PLA="y" && continue
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001815 [ "${OPTARG}" == "volume" ] && OPENSTACK_ATTACH_VOLUME="true" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +02001816 echo -e "Invalid option: '--$OPTARG'\n" >&2
1817 usage && exit 1
1818 ;;
garciadeblas25e87d22020-01-31 14:27:29 +01001819 :)
1820 echo "Option -$OPTARG requires an argument" >&2
1821 usage && exit 1
1822 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +02001823 \?)
1824 echo -e "Invalid option: '-$OPTARG'\n" >&2
1825 usage && exit 1
1826 ;;
garciadeblas25e87d22020-01-31 14:27:29 +01001827 h)
1828 usage && exit 0
1829 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +02001830 y)
1831 ASSUME_YES="y"
1832 ;;
1833 *)
1834 usage && exit 1
1835 ;;
1836 esac
1837done
1838
garciadeblas453d4582020-12-16 19:03:10 +01001839[ -n "$DOCKER_REGISTRY_URL" ] && parse_docker_registry_url
garciadeblas0e596bc2018-05-28 16:04:42 +02001840[ -n "$TO_REBUILD" ] && [ "$TO_REBUILD" != " NONE" ] && echo $TO_REBUILD | grep -q NONE && FATAL "Incompatible option: -m NONE cannot be used with other -m options"
magnussonl1bbe9452020-02-25 13:43:17 +01001841[ -n "$TO_REBUILD" ] && [ "$TO_REBUILD" == " PLA" ] && [ -z "$INSTALL_PLA" ] && FATAL "Incompatible option: -m PLA cannot be used without --pla option"
garciadeblas6c66abf2018-05-16 14:46:19 +02001842
garciadeblasd8bc5c32018-05-09 17:37:56 +02001843if [ -n "$SHOWOPTS" ]; then
1844 dump_vars
1845 exit 0
1846fi
1847
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +01001848if [ -n "$CHARMED" ]; then
1849 if [ -n "$UNINSTALL" ]; then
garciadeblasd807e902020-07-04 07:38:49 +00001850 ${OSM_DEVOPS}/installers/charmed_uninstall.sh -R $RELEASE -r $REPOSITORY -u $REPOSITORY_BASE -D /usr/share/osm-devops -t $DOCKER_TAG "$@"
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +01001851 else
garciadeblasd807e902020-07-04 07:38:49 +00001852 ${OSM_DEVOPS}/installers/charmed_install.sh -R $RELEASE -r $REPOSITORY -u $REPOSITORY_BASE -D /usr/share/osm-devops -t $DOCKER_TAG "$@"
Dominik Fleischmannc57296f2020-06-09 11:45:08 +02001853 fi
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +01001854
1855 exit 0
1856fi
1857
garciadeblasd8bc5c32018-05-09 17:37:56 +02001858# if develop, we force master
1859[ -z "$COMMIT_ID" ] && [ -n "$DEVELOP" ] && COMMIT_ID="master"
1860
David Garcia404ae122020-04-28 11:47:55 +02001861need_packages="git wget curl tar"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +02001862
1863[ -n "$INSTALL_TO_OPENSTACK" ] && install_to_openstack $OPENSTACK_OPENRC_FILE_OR_CLOUD $OPENSTACK_PUBLIC_NET_NAME $OPENSTACK_ATTACH_VOLUME && echo -e "\nDONE" && exit 0
1864
garciadeblasd8bc5c32018-05-09 17:37:56 +02001865echo -e "Checking required packages: $need_packages"
1866dpkg -l $need_packages &>/dev/null \
1867 || ! echo -e "One or several required packages are not installed. Updating apt cache requires root privileges." \
1868 || sudo apt-get update \
1869 || FATAL "failed to run apt-get update"
1870dpkg -l $need_packages &>/dev/null \
1871 || ! echo -e "Installing $need_packages requires root privileges." \
1872 || sudo apt-get install -y $need_packages \
1873 || FATAL "failed to install $need_packages"
David Garcia404ae122020-04-28 11:47:55 +02001874sudo snap install jq
garciadeblasd8bc5c32018-05-09 17:37:56 +02001875if [ -z "$OSM_DEVOPS" ]; then
Michael Marchettiee374142018-08-02 22:47:16 +02001876 if [ -n "$TEST_INSTALLER" ]; then
1877 echo -e "\nUsing local devops repo for OSM installation"
1878 OSM_DEVOPS="$(dirname $(realpath $(dirname $0)))"
1879 else
1880 echo -e "\nCreating temporary dir for OSM installation"
1881 OSM_DEVOPS="$(mktemp -d -q --tmpdir "installosm.XXXXXX")"
1882 trap 'rm -rf "$OSM_DEVOPS"' EXIT
garciadeblasd8bc5c32018-05-09 17:37:56 +02001883
Michael Marchettiee374142018-08-02 22:47:16 +02001884 git clone https://osm.etsi.org/gerrit/osm/devops.git $OSM_DEVOPS
garciadeblasd8bc5c32018-05-09 17:37:56 +02001885
Michael Marchettiee374142018-08-02 22:47:16 +02001886 if [ -z "$COMMIT_ID" ]; then
1887 echo -e "\nGuessing the current stable release"
1888 LATEST_STABLE_DEVOPS=`git -C $OSM_DEVOPS tag -l v[0-9].* | sort -V | tail -n1`
1889 [ -z "$LATEST_STABLE_DEVOPS" ] && echo "Could not find the current latest stable release" && exit 0
1890
1891 echo "Latest tag in devops repo: $LATEST_STABLE_DEVOPS"
1892 COMMIT_ID="tags/$LATEST_STABLE_DEVOPS"
1893 else
1894 echo -e "\nDEVOPS Using commit $COMMIT_ID"
1895 fi
1896 git -C $OSM_DEVOPS checkout $COMMIT_ID
garciadeblasd8bc5c32018-05-09 17:37:56 +02001897 fi
garciadeblasd8bc5c32018-05-09 17:37:56 +02001898fi
1899
garciadeblas3c25fab2019-11-18 17:24:43 +01001900. $OSM_DEVOPS/common/all_funcs
garciadeblasd8bc5c32018-05-09 17:37:56 +02001901
beierlma4a37f72020-06-26 12:55:01 -04001902[ "${OSM_STACK_NAME}" == "osm" ] || OSM_DOCKER_WORK_DIR="$OSM_WORK_DIR/stack/$OSM_STACK_NAME"
1903[ -n "$KUBERNETES" ] && OSM_K8S_WORK_DIR="$OSM_DOCKER_WORK_DIR/osm_pods" && OSM_NAMESPACE_VOL="${OSM_HOST_VOL}/${OSM_STACK_NAME}"
garciadeblasd8bc5c32018-05-09 17:37:56 +02001904[ -n "$INSTALL_LIGHTWEIGHT" ] && [ -n "$UNINSTALL" ] && uninstall_lightweight && echo -e "\nDONE" && exit 0
garciadeblas6c66abf2018-05-16 14:46:19 +02001905[ -n "$INSTALL_ONLY" ] && [ -n "$INSTALL_ELK" ] && deploy_elk
lavado6ad812e2019-11-29 10:58:58 -05001906#[ -n "$INSTALL_ONLY" ] && [ -n "$INSTALL_PERFMON" ] && deploy_perfmon
garciadeblas6c66abf2018-05-16 14:46:19 +02001907[ -n "$INSTALL_ONLY" ] && [ -n "$INSTALL_VIMEMU" ] && install_vimemu
garciadeblasb5a630f2020-03-05 18:32:16 +00001908[ -n "$INSTALL_ONLY" ] && [ -n "$INSTALL_K8S_MONITOR" ] && install_k8s_monitoring
garciadeblas6c66abf2018-05-16 14:46:19 +02001909[ -n "$INSTALL_ONLY" ] && echo -e "\nDONE" && exit 0
garciadeblasd8bc5c32018-05-09 17:37:56 +02001910
1911#Installation starts here
garciadeblasfa81f282020-12-15 00:32:13 +00001912wget -q -O- https://osm-download.etsi.org/ftp/osm-9.0-nine/README.txt &> /dev/null
garciadeblas6c66abf2018-05-16 14:46:19 +02001913track start
1914
garciadeblasd8bc5c32018-05-09 17:37:56 +02001915[ -n "$INSTALL_LIGHTWEIGHT" ] && install_lightweight && echo -e "\nDONE" && exit 0
1916echo -e "\nInstalling OSM from refspec: $COMMIT_ID"
1917if [ -n "$INSTALL_FROM_SOURCE" ] && [ -z "$ASSUME_YES" ]; then
1918 ! ask_user "The installation will take about 75-90 minutes. Continue (Y/n)? " y && echo "Cancelled!" && exit 1
1919fi
1920
1921echo -e "Checking required packages: lxd"
1922lxd --version &>/dev/null || FATAL "lxd not present, exiting."
1923[ -n "$INSTALL_LXD" ] && echo -e "\nInstalling and configuring lxd" && install_lxd
1924
garciadeblasd8bc5c32018-05-09 17:37:56 +02001925# use local devops for containers
1926export OSM_USE_LOCAL_DEVOPS=true
garciadeblasd8bc5c32018-05-09 17:37:56 +02001927
1928#Install osmclient
garciadeblasd8bc5c32018-05-09 17:37:56 +02001929
1930#Install vim-emu (optional)
peusterm76353e42018-05-08 13:56:05 +02001931[ -n "$INSTALL_VIMEMU" ] && install_docker_ce && install_vimemu
garciadeblasd8bc5c32018-05-09 17:37:56 +02001932
garciadeblasfa81f282020-12-15 00:32:13 +00001933wget -q -O- https://osm-download.etsi.org/ftp/osm-9.0-nine/README2.txt &> /dev/null
garciadeblasd8bc5c32018-05-09 17:37:56 +02001934track end
1935echo -e "\nDONE"