blob: eaf3bfbdfcb0ceab0810f1bf7d682380f1945dd3 [file] [log] [blame]
garciadeblasd8bc5c32018-05-09 17:37:56 +02001#!/bin/bash
garciadeblasd8bc5c32018-05-09 17:37:56 +02002#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
garciadeblas0bc87522021-10-20 22:16:17 +020014#
garciadeblasd8bc5c32018-05-09 17:37:56 +020015
16function usage(){
garciadeblas0bc87522021-10-20 22:16:17 +020017 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblasd8bc5c32018-05-09 17:37:56 +020018 echo -e "usage: $0 [OPTIONS]"
garciadeblas81077ae2023-07-03 19:31:15 +020019 echo -e "Install OSM"
garciadeblasd8bc5c32018-05-09 17:37:56 +020020 echo -e " OPTIONS"
garciadeblas7f1e1042020-11-30 14:07:03 +000021 echo -e " -h / --help: print this help"
22 echo -e " -y: do not prompt for confirmation, assumes yes"
garciadeblasd8bc5c32018-05-09 17:37:56 +020023 echo -e " -r <repo>: use specified repository name for osm packages"
khelifibca83312025-06-17 16:06:23 +020024 echo -e " -R <release>: use specified release for osm binaries (deb packages, ...)"
garciadeblasd8bc5c32018-05-09 17:37:56 +020025 echo -e " -u <repo base>: use specified repository url for osm packages"
26 echo -e " -k <repo key>: use specified repository public key url"
garciadeblas0bc87522021-10-20 22:16:17 +020027 echo -e " -a <apt proxy url>: use this apt proxy url when downloading apt packages (air-gapped installation)"
garciadeblasb3797412024-06-06 14:26:24 +020028 echo -e " -c <kubernetes engine>: use a specific kubernetes engine (options: kubeadm, k3s), default is kubeadm"
garciadeblas8d8cd992024-05-21 16:04:14 +020029 echo -e " -t <docker tag> specify osm docker tag (default is latest)"
30 echo -e " -M <KUBECONFIG_FILE>: Kubeconfig of an existing cluster to be used as mgmt cluster instead of OSM cluster"
31 echo -e " -G <KUBECONFIG_FILE>: Kubeconfig of an existing cluster to be used as auxiliary cluster instead of OSM cluster"
32 echo -e " --no-mgmt-cluster: Do not provision a mgmt cluster for cloud-native gitops operations in OSM (NEW in Release SIXTEEN) (by default, it is installed)"
33 echo -e " --no-aux-cluster: Do not provision an auxiliary cluster for cloud-native gitops operations in OSM (NEW in Release SIXTEEN) (by default, it is installed)"
34 echo -e " -D <devops path>: use local devops installation path"
garciadeblas325032a2023-04-13 18:07:44 +020035 echo -e " -s <namespace> namespace when installed using k8s, default is osm"
garciadeblas8d8cd992024-05-21 16:04:14 +020036 echo -e " -w <work dir>: Location to store runtime installation"
David Garcia404ae122020-04-28 11:47:55 +020037 echo -e " -K: Specifies the name of the controller to use - The controller must be already bootstrapped"
garciadeblas7f1e1042020-11-30 14:07:03 +000038 echo -e " -d <docker registry URL> use docker registry URL instead of dockerhub"
39 echo -e " -p <docker proxy URL> set docker proxy URL as part of docker CE configuration"
40 echo -e " -T <docker tag> specify docker tag for the modules specified with option -m"
garciadeblas0bc87522021-10-20 22:16:17 +020041 echo -e " --debug: debug mode"
garciadeblasa3e26612018-05-30 17:58:55 +020042 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 -040043 echo -e " --nohostclient: do not install the osmclient"
garciadeblase990f662018-05-18 11:43:39 +020044 echo -e " --uninstall: uninstall OSM: remove the containers and delete NAT rules"
garciadeblasd8bc5c32018-05-09 17:37:56 +020045 echo -e " --showopts: print chosen options and exit (only for debugging)"
garciadeblas0bc87522021-10-20 22:16:17 +020046 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblasd8bc5c32018-05-09 17:37:56 +020047}
48
Benjamin Diazba2cca92018-11-08 21:07:15 -030049function generate_secret() {
garciadeblas0bc87522021-10-20 22:16:17 +020050 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
Benjamin Diazba2cca92018-11-08 21:07:15 -030051 head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32
garciadeblas0bc87522021-10-20 22:16:17 +020052 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
calvinosanc10c82da02020-08-17 11:45:15 +020053}
54
beierlm2ce2b002021-12-07 16:02:22 -050055function check_packages() {
56 NEEDED_PACKAGES="$1"
57 echo -e "Checking required packages: ${NEEDED_PACKAGES}"
58 for PACKAGE in ${NEEDED_PACKAGES} ; do
garciadeblas835088e2022-01-28 11:25:18 +010059 dpkg -L ${PACKAGE}
beierlm2ce2b002021-12-07 16:02:22 -050060 if [ $? -ne 0 ]; then
garciadeblas835088e2022-01-28 11:25:18 +010061 echo -e "Package ${PACKAGE} is not installed."
62 echo -e "Updating apt-cache ..."
beierlm2ce2b002021-12-07 16:02:22 -050063 sudo apt-get update
garciadeblas835088e2022-01-28 11:25:18 +010064 echo -e "Installing ${PACKAGE} ..."
beierlm2ce2b002021-12-07 16:02:22 -050065 sudo apt-get install -y ${PACKAGE} || FATAL "failed to install ${PACKAGE}"
66 fi
67 done
68 echo -e "Required packages are present: ${NEEDED_PACKAGES}"
69}
70
garciadeblasd8bc5c32018-05-09 17:37:56 +020071function ask_user(){
72 # ask to the user and parse a response among 'y', 'yes', 'n' or 'no'. Case insensitive
73 # Params: $1 text to ask; $2 Action by default, can be 'y' for yes, 'n' for no, other or empty for not allowed
74 # Return: true(0) if user type 'yes'; false (1) if user type 'no'
garciadeblas0bc87522021-10-20 22:16:17 +020075 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblasd8bc5c32018-05-09 17:37:56 +020076 read -e -p "$1" USER_CONFIRMATION
77 while true ; do
78 [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'y' ] && return 0
79 [ -z "$USER_CONFIRMATION" ] && [ "$2" == 'n' ] && return 1
80 [ "${USER_CONFIRMATION,,}" == "yes" ] || [ "${USER_CONFIRMATION,,}" == "y" ] && return 0
81 [ "${USER_CONFIRMATION,,}" == "no" ] || [ "${USER_CONFIRMATION,,}" == "n" ] && return 1
82 read -e -p "Please type 'yes' or 'no': " USER_CONFIRMATION
83 done
garciadeblas0bc87522021-10-20 22:16:17 +020084 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblasd8bc5c32018-05-09 17:37:56 +020085}
86
garciadeblasd8bc5c32018-05-09 17:37:56 +020087function install_osmclient(){
garciadeblas0bc87522021-10-20 22:16:17 +020088 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblasd8bc5c32018-05-09 17:37:56 +020089 CLIENT_RELEASE=${RELEASE#"-R "}
90 CLIENT_REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg"
91 CLIENT_REPOSITORY=${REPOSITORY#"-r "}
garciadeblasd8bc5c32018-05-09 17:37:56 +020092 CLIENT_REPOSITORY_BASE=${REPOSITORY_BASE#"-u "}
93 key_location=$CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE/$CLIENT_REPOSITORY_KEY
garciadeblas0bc87522021-10-20 22:16:17 +020094 curl $key_location | sudo APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add -
garciadeblas078f5982019-11-27 15:06:06 +010095 sudo add-apt-repository -y "deb [arch=amd64] $CLIENT_REPOSITORY_BASE/$CLIENT_RELEASE $CLIENT_REPOSITORY osmclient IM"
garciadeblas80b2e172023-06-01 18:38:13 +020096 sudo apt-get -y update
97 sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip
garciadeblas078f5982019-11-27 15:06:06 +010098 sudo -H LC_ALL=C python3 -m pip install -U pip
garciadeblas80b2e172023-06-01 18:38:13 +020099 sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3-osm-im python3-osmclient
beierlm920d7562021-04-21 05:13:53 -0400100 if [ -f /usr/lib/python3/dist-packages/osm_im/requirements.txt ]; then
beierlm021b3072021-04-27 14:33:24 -0400101 python3 -m pip install -r /usr/lib/python3/dist-packages/osm_im/requirements.txt
beierlm920d7562021-04-21 05:13:53 -0400102 fi
103 if [ -f /usr/lib/python3/dist-packages/osmclient/requirements.txt ]; then
garciadeblas357a3c22023-06-26 09:10:11 +0200104 sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libmagic1
beierlm021b3072021-04-27 14:33:24 -0400105 python3 -m pip install -r /usr/lib/python3/dist-packages/osmclient/requirements.txt
beierlm920d7562021-04-21 05:13:53 -0400106 fi
garciadeblasd8bc5c32018-05-09 17:37:56 +0200107 echo -e "\nOSM client installed"
garciadeblase3a84a52024-09-27 11:34:55 +0200108 echo "You can get the OSM NBI endpoint using the following command"
109 echo ' kubectl -n osm get ingress nbi-ingress -o jsonpath="{.spec.rules[0].host}"'
110 echo "You will have to configure this env variable in your .bashrc file:"
111 echo " export OSM_HOSTNAME=nbi.${OSM_K8S_EXTERNAL_IP}.nip.io"
garciadeblas0bc87522021-10-20 22:16:17 +0200112 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblasd8bc5c32018-05-09 17:37:56 +0200113 return 0
114}
115
garciadeblas453d4582020-12-16 19:03:10 +0100116function docker_login() {
garciadeblas0bc87522021-10-20 22:16:17 +0200117 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblas453d4582020-12-16 19:03:10 +0100118 echo "Docker login"
garciadeblas0bc87522021-10-20 22:16:17 +0200119 [ -z "${DEBUG_INSTALL}" ] || DEBUG "Docker registry user: ${DOCKER_REGISTRY_USER}"
120 sg docker -c "docker login -u ${DOCKER_REGISTRY_USER} -p ${DOCKER_REGISTRY_PASSWORD} --password-stdin"
121 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblas453d4582020-12-16 19:03:10 +0100122}
123
garciadeblasf6ed60c2020-07-08 14:30:29 +0000124#deploys osm pods and services
garciadeblas9bae86f2024-05-31 17:15:18 +0200125function deploy_osm_helm_chart() {
garciadeblas0bc87522021-10-20 22:16:17 +0200126 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblas8080e4b2023-04-14 09:57:17 +0200127 # Generate helm values to be passed with -f osm-values.yaml
128 sudo mkdir -p ${OSM_HELM_WORK_DIR}
garciadeblas8080e4b2023-04-14 09:57:17 +0200129
130 # Generate helm values to be passed with --set
131 OSM_HELM_OPTS=""
132 # OSM_HELM_OPTS="${OSM_HELM_OPTS} --set nbi.useOsmSecret=false"
garciadeblase6d45882024-05-22 15:03:00 +0200133
134 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.image.repositoryBase=${DOCKER_REGISTRY_URL}${DOCKER_USER}"
135 [ ! "$OSM_DOCKER_TAG" == "testing-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set-string global.image.tag=${OSM_DOCKER_TAG}"
136 [ ! "$OSM_DOCKER_TAG" == "testing-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set prometheus.server.sidecarContainers.prometheus-config-sidecar.image=${DOCKER_REGISTRY_URL}${DOCKER_USER}/prometheus:${OSM_DOCKER_TAG}"
137
garciadeblase3a84a52024-09-27 11:34:55 +0200138 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.hostname=${OSM_K8S_EXTERNAL_IP}.nip.io"
139 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set grafana.ingress.hosts={grafana.${OSM_K8S_EXTERNAL_IP}.nip.io}"
140 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set prometheus.server.ingress.hosts={prometheus.${OSM_K8S_EXTERNAL_IP}.nip.io}"
141 # OSM_HELM_OPTS="${OSM_HELM_OPTS} --set prometheus.alertmanager.ingress.hosts={alertmanager.${OSM_K8S_EXTERNAL_IP}.nip.io}"
garciadeblas1f6e09a2024-09-10 18:50:29 +0200142 if [ -z "${INSTALL_MGMT_CLUSTER}" ]; then
143 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.gitops.enabled=false"
144 else
145 source "${HOME}/.osm/.credentials/gitea_environment.rc"
146 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.gitops.gitBaseUrl=${GITEA_HTTP_URL}"
147 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.gitops.gitUser=${GITEA_STD_USERNAME}"
148 AGE_MGMT_PUBKEY=$(tr -d '\n' < ${HOME}/.osm/.credentials/age.mgmt.pub)
149 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.gitops.pubkey=${AGE_MGMT_PUBKEY}"
150 fi
garciadeblas18582e92024-05-21 12:13:50 +0200151
garciadeblas555702a2023-05-31 23:47:01 +0200152 if [ -n "${OSM_BEHIND_PROXY}" ]; then
153 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.behindHttpProxy=true"
garciadeblas8c2b2642023-11-02 07:56:50 +0100154 [ -n "${HTTP_PROXY}" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.httpProxy.HTTP_PROXY=\"${HTTP_PROXY}\""
155 [ -n "${HTTPS_PROXY}" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.httpProxy.HTTPS_PROXY=\"${HTTPS_PROXY}\""
156 if [ -n "${NO_PROXY}" ]; then
157 if [[ ! "${NO_PROXY}" =~ .*".svc".* ]]; then
158 NO_PROXY="${NO_PROXY},.svc"
159 fi
160 if [[ ! "${NO_PROXY}" =~ .*".cluster.local".* ]]; then
161 NO_PROXY="${NO_PROXY},.cluster.local"
162 fi
163 OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.httpProxy.NO_PROXY=\"${NO_PROXY//,/\,}\""
164 fi
garciadeblas555702a2023-05-31 23:47:01 +0200165 fi
garciadeblas8080e4b2023-04-14 09:57:17 +0200166
garciadeblase6d45882024-05-22 15:03:00 +0200167 echo "helm upgrade --install -n $OSM_NAMESPACE --create-namespace $OSM_NAMESPACE $OSM_DEVOPS/installers/helm/osm ${OSM_HELM_OPTS}"
168 helm upgrade --install -n $OSM_NAMESPACE --create-namespace $OSM_NAMESPACE $OSM_DEVOPS/installers/helm/osm ${OSM_HELM_OPTS}
garciadeblas8080e4b2023-04-14 09:57:17 +0200169 # Override existing values.yaml with the final values.yaml used to install OSM
170 helm -n $OSM_NAMESPACE get values $OSM_NAMESPACE | sudo tee -a ${OSM_HELM_WORK_DIR}/osm-values.yaml
garciadeblas0bc87522021-10-20 22:16:17 +0200171 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
vijaynag8339ed22019-07-25 17:10:58 +0530172}
173
garciadeblase92a18d2020-07-03 16:24:23 +0000174function add_local_k8scluster() {
garciadeblas0bc87522021-10-20 22:16:17 +0200175 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblas18582e92024-05-21 12:13:50 +0200176 # OSM_HOSTNAME=$(kubectl get --namespace osm -o jsonpath="{.spec.rules[0].host}" ingress nbi-ingress)
garciadeblase3a84a52024-09-27 11:34:55 +0200177 OSM_HOSTNAME="nbi.${OSM_K8S_EXTERNAL_IP}.nip.io:443"
garciadeblas18582e92024-05-21 12:13:50 +0200178 /usr/bin/osm --hostname ${OSM_HOSTNAME} --all-projects vim-create \
garciadeblase92a18d2020-07-03 16:24:23 +0000179 --name _system-osm-vim \
180 --account_type dummy \
181 --auth_url http://dummy \
182 --user osm --password osm --tenant osm \
183 --description "dummy" \
184 --config '{management_network_name: mgmt}'
garciadeblas18582e92024-05-21 12:13:50 +0200185 /usr/bin/osm --hostname ${OSM_HOSTNAME} --all-projects k8scluster-add \
garciadeblase92a18d2020-07-03 16:24:23 +0000186 --creds ${HOME}/.kube/config \
187 --vim _system-osm-vim \
188 --k8s-nets '{"net1": null}' \
garciadeblas18582e92024-05-21 12:13:50 +0200189 --version '1.29' \
garciadeblase92a18d2020-07-03 16:24:23 +0000190 --description "OSM Internal Cluster" \
191 _system-osm-k8s
garciadeblas0bc87522021-10-20 22:16:17 +0200192 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblase92a18d2020-07-03 16:24:23 +0000193}
194
garciadeblas0bc87522021-10-20 22:16:17 +0200195function configure_apt_proxy() {
196 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
197 OSM_APT_PROXY=$1
198 OSM_APT_PROXY_FILE="/etc/apt/apt.conf.d/osm-apt"
199 echo "Configuring apt proxy in file ${OSM_APT_PROXY_FILE}"
200 if [ ! -f ${OSM_APT_PROXY_FILE} ]; then
201 sudo bash -c "cat <<EOF > ${OSM_APT_PROXY}
202Acquire::http { Proxy \"${OSM_APT_PROXY}\"; }
203EOF"
204 else
205 sudo sed -i "s|Proxy.*|Proxy \"${OSM_APT_PROXY}\"; }|" ${OSM_APT_PROXY_FILE}
206 fi
207 sudo apt-get update || FATAL "Configured apt proxy, but couldn't run 'apt-get update'. Check ${OSM_APT_PROXY_FILE}"
garciadeblas4d89c372021-11-25 11:57:18 +0100208 track prereq apt_proxy_configured_ok
garciadeblas0bc87522021-10-20 22:16:17 +0200209 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
210}
211
garciadeblasfa3eb332022-11-15 14:11:56 +0100212function ask_proceed() {
garciadeblas0bc87522021-10-20 22:16:17 +0200213 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblasadcf95e2022-01-28 17:15:39 +0100214
garciadeblas0bc87522021-10-20 22:16:17 +0200215 [ -z "$ASSUME_YES" ] && ! ask_user "The installation will do the following
khelifibca83312025-06-17 16:06:23 +0200216 1. Install required packages
217 2. Install docker CE
218 3. Disable swap space
219 4. Install and initialize Kubernetes
garciadeblas0bc87522021-10-20 22:16:17 +0200220 as pre-requirements.
221 Do you want to proceed (Y/n)? " y && echo "Cancelled!" && exit 1
garciadeblasfa3eb332022-11-15 14:11:56 +0100222
223 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
224}
225
226function check_osm_behind_proxy() {
227 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
228
229 export OSM_BEHIND_PROXY=""
230 export OSM_PROXY_ENV_VARIABLES=""
231 [ -n "${http_proxy}" ] && OSM_BEHIND_PROXY="y" && echo "http_proxy=${http_proxy}" && OSM_PROXY_ENV_VARIABLES="${OSM_PROXY_ENV_VARIABLES} http_proxy"
232 [ -n "${https_proxy}" ] && OSM_BEHIND_PROXY="y" && echo "https_proxy=${https_proxy}" && OSM_PROXY_ENV_VARIABLES="${OSM_PROXY_ENV_VARIABLES} https_proxy"
233 [ -n "${HTTP_PROXY}" ] && OSM_BEHIND_PROXY="y" && echo "HTTP_PROXY=${HTTP_PROXY}" && OSM_PROXY_ENV_VARIABLES="${OSM_PROXY_ENV_VARIABLES} HTTP_PROXY"
234 [ -n "${HTTPS_PROXY}" ] && OSM_BEHIND_PROXY="y" && echo "https_proxy=${HTTPS_PROXY}" && OSM_PROXY_ENV_VARIABLES="${OSM_PROXY_ENV_VARIABLES} HTTPS_PROXY"
235 [ -n "${no_proxy}" ] && echo "no_proxy=${no_proxy}" && OSM_PROXY_ENV_VARIABLES="${OSM_PROXY_ENV_VARIABLES} no_proxy"
236 [ -n "${NO_PROXY}" ] && echo "NO_PROXY=${NO_PROXY}" && OSM_PROXY_ENV_VARIABLES="${OSM_PROXY_ENV_VARIABLES} NO_PROXY"
237
238 echo "OSM_BEHIND_PROXY=${OSM_BEHIND_PROXY}"
239 echo "OSM_PROXY_ENV_VARIABLES=${OSM_PROXY_ENV_VARIABLES}"
240
241 if [ -n "${OSM_BEHIND_PROXY}" ]; then
242 [ -z "$ASSUME_YES" ] && ! ask_user "
243The following env variables have been found for the current user:
244${OSM_PROXY_ENV_VARIABLES}.
245
246This suggests that this machine is behind a proxy and a special configuration is required.
khelifibca83312025-06-17 16:06:23 +0200247The installer will install Docker CE and a Kubernetes to work behind a proxy using those
garciadeblasfa3eb332022-11-15 14:11:56 +0100248env variables.
249
khelifibca83312025-06-17 16:06:23 +0200250Take into account that the installer uses apt, curl, wget and docker.
garciadeblasfa3eb332022-11-15 14:11:56 +0100251Depending on the program, the env variables to work behind a proxy might be different
252(e.g. http_proxy vs HTTP_PROXY).
253
254For that reason, it is strongly recommended that at least http_proxy, https_proxy, HTTP_PROXY
255and HTTPS_PROXY are defined.
256
khelifibca83312025-06-17 16:06:23 +0200257Finally, some of the programs (apt) are run as sudoer, requiring that those env variables
258are also set for root user. If you are not sure whether those variables are configured for
259the root user, you can stop the installation now.
garciadeblasfa3eb332022-11-15 14:11:56 +0100260
261Do you want to proceed with the installation (Y/n)? " y && echo "Cancelled!" && exit 1
262 else
263 echo "This machine is not behind a proxy"
264 fi
265
266 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
267}
268
269function find_devops_folder() {
garciadeblas9bae86f2024-05-31 17:15:18 +0200270 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblasfa3eb332022-11-15 14:11:56 +0100271 if [ -z "$OSM_DEVOPS" ]; then
khelifibca83312025-06-17 16:06:23 +0200272 echo -e "\nCreating temporary dir for OSM installation"
273 OSM_DEVOPS="$(mktemp -d -q --tmpdir "installosm.XXXXXX")"
274 trap 'rm -rf "$OSM_DEVOPS"' EXIT
275 git clone https://osm.etsi.org/gerrit/osm/devops.git $OSM_DEVOPS
garciadeblasfa3eb332022-11-15 14:11:56 +0100276 fi
garciadeblas9bae86f2024-05-31 17:15:18 +0200277 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
278}
279
garciadeblas9bae86f2024-05-31 17:15:18 +0200280function install_docker_ce() {
281 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
282 DOCKER_CE_OPTS="-D ${OSM_DEVOPS} ${DEBUG_INSTALL}"
283 [ -n "${DOCKER_PROXY_URL}" ] && DOCKER_CE_OPTS="${DOCKER_CE_OPTS} -p ${DOCKER_PROXY_URL}"
284 [ -n "${OSM_BEHIND_PROXY}" ] && DOCKER_CE_OPTS="${DOCKER_CE_OPTS} -P"
285 $OSM_DEVOPS/installers/install_docker_ce.sh ${DOCKER_CE_OPTS} || FATAL_TRACK docker_ce "install_docker_ce.sh failed"
286 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
287}
288
289function install_k8s_cluster() {
290 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
291 if [ "${K8S_CLUSTER_ENGINE}" == "kubeadm" ]; then
292 KUBEADM_INSTALL_OPTS="-d ${OSM_WORK_DIR} -D ${OSM_DEVOPS} ${DEBUG_INSTALL}"
293 $OSM_DEVOPS/installers/install_kubeadm_cluster.sh ${KUBEADM_INSTALL_OPTS} || \
294 FATAL_TRACK k8scluster "install_kubeadm_cluster.sh failed"
garciadeblasb3797412024-06-06 14:26:24 +0200295 K8SCLUSTER_ADDONS_INSTALL_OPTS="-i ${OSM_DEFAULT_IP} -d ${OSM_WORK_DIR} -D ${OSM_DEVOPS} ${DEBUG_INSTALL} --all"
garciadeblas9bae86f2024-05-31 17:15:18 +0200296 $OSM_DEVOPS/installers/install_cluster_addons.sh ${K8SCLUSTER_ADDONS_INSTALL_OPTS} || \
garciadeblasb3797412024-06-06 14:26:24 +0200297 FATAL_TRACK k8scluster "install_cluster_addons.sh failed for kubeadm cluster"
298 elif [ "${K8S_CLUSTER_ENGINE}" == "k3s" ]; then
garciadeblas1f338482024-07-04 19:26:54 +0200299 K3S_INSTALL_OPTS="-i ${OSM_DEFAULT_IP} -D ${OSM_DEVOPS} ${DEBUG_INSTALL}"
garciadeblase3a84a52024-09-27 11:34:55 +0200300 [ "${OSM_K8S_EXTERNAL_IP}" != "${OSM_DEFAULT_IP}" ] && K3S_INSTALL_OPTS="${K3S_INSTALL_OPTS} -e ${OSM_K8S_EXTERNAL_IP}"
garciadeblas117fd4a2024-08-21 18:18:14 +0200301 [ -n "${DOCKER_PROXY_URL}" ] && K3S_INSTALL_OPTS="${K3S_INSTALL_OPTS} -p ${DOCKER_PROXY_URL}"
garciadeblas2efb98b2024-08-21 21:19:36 +0200302 [ -n "${DOCKER_REGISTRY_URL}" ] && K3S_INSTALL_OPTS="${K3S_INSTALL_OPTS} -d ${DOCKER_REGISTRY_URL}"
303 [ -n "${DOCKER_REGISTRY_USER}" ] && K3S_INSTALL_OPTS="${K3S_INSTALL_OPTS} -u ${DOCKER_REGISTRY_USER}"
304 [ -n "${DOCKER_REGISTRY_PASSWORD}" ] && K3S_INSTALL_OPTS="${K3S_INSTALL_OPTS} -P ${DOCKER_REGISTRY_PASSWORD}"
garciadeblasb3797412024-06-06 14:26:24 +0200305 # The K3s installation script will automatically take the HTTP_PROXY, HTTPS_PROXY and NO_PROXY,
306 # as well as the CONTAINERD_HTTP_PROXY, CONTAINERD_HTTPS_PROXY and CONTAINERD_NO_PROXY variables
307 # from the shell, if they are present, and write them to the environment file of k3s systemd service,
308 $OSM_DEVOPS/installers/install_k3s_cluster.sh ${K3S_INSTALL_OPTS} || \
309 FATAL_TRACK k8scluster "install_k3s_cluster.sh failed"
310 K8SCLUSTER_ADDONS_INSTALL_OPTS="-i ${OSM_DEFAULT_IP} -d ${OSM_WORK_DIR} -D ${OSM_DEVOPS} ${DEBUG_INSTALL} --certmgr --nginx"
311 $OSM_DEVOPS/installers/install_cluster_addons.sh ${K8SCLUSTER_ADDONS_INSTALL_OPTS} || \
312 FATAL_TRACK k8scluster "install_cluster_addons.sh failed for k3s cluster"
garciadeblas9bae86f2024-05-31 17:15:18 +0200313 fi
garciadeblas58b5ba62024-09-11 14:58:05 +0200314 echo "Updating fsnotify settings of the system kernel"
315 sudo bash -c "sysctl -w fs.inotify.max_user_watches=699050 > /etc/sysctl.d/99-custom-osm-sysctl.conf"
316 sudo bash -c "sysctl -w fs.inotify.max_user_instances=10922 >> /etc/sysctl.d/99-custom-osm-sysctl.conf"
317 sudo bash -c "sysctl -w fs.inotify.max_queued_events=1398101 >> /etc/sysctl.d/99-custom-osm-sysctl.conf"
garciadeblas9bae86f2024-05-31 17:15:18 +0200318 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
319}
320
321function deploy_osm() {
garciadeblasb3797412024-06-06 14:26:24 +0200322 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblas9bae86f2024-05-31 17:15:18 +0200323 deploy_osm_helm_chart
garciadeblasc3aa9392025-04-22 14:13:23 +0200324 track deploy_osm deploy_mongodb_ok
garciadeblas9bae86f2024-05-31 17:15:18 +0200325 track deploy_osm deploy_osm_services_k8s_ok
garciadeblascfb60b12025-04-23 17:55:02 +0200326 track deploy_osm install_osm_ngsa_ok
garciadeblasb3797412024-06-06 14:26:24 +0200327 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblasfa3eb332022-11-15 14:11:56 +0100328}
329
garciadeblasf7a207d2025-01-30 15:54:08 +0100330function setup_external_ip() {
331 echo "Determining IP address of the interface with the default route"
332 [ -z "$OSM_DEFAULT_IF" ] && OSM_DEFAULT_IF=$(ip route list|awk '$1=="default" {print $5; exit}')
333 [ -z "$OSM_DEFAULT_IF" ] && OSM_DEFAULT_IF=$(route -n |awk '$1~/^0.0.0.0/ {print $8; exit}')
334 [ -z "$OSM_DEFAULT_IF" ] && FATAL "Not possible to determine the interface with the default route 0.0.0.0"
335 OSM_DEFAULT_IP=`ip -o -4 a s ${OSM_DEFAULT_IF} |awk '{split($4,a,"/"); print a[1]; exit}'`
336 [ -z "$OSM_DEFAULT_IP" ] && FATAL "Not possible to determine the IP address of the interface with the default route"
337 OSM_K8S_EXTERNAL_IP=${OSM_K8S_EXTERNAL_IP:-${OSM_DEFAULT_IP}}
338}
339
garciadeblasfa3eb332022-11-15 14:11:56 +0100340function install_osm() {
341 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
342
343 trap ctrl_c INT
344
garciadeblasfa3eb332022-11-15 14:11:56 +0100345 check_osm_behind_proxy
khelifibca83312025-06-17 16:06:23 +0200346 check_packages "git wget curl tar"
garciadeblasfa3eb332022-11-15 14:11:56 +0100347 find_devops_folder
348
garciadeblas28d71bd2023-06-07 23:06:50 +0200349 track start release $RELEASE none none docker_tag $OSM_DOCKER_TAG none none installation_type $OSM_INSTALLATION_TYPE none none os_info $os_info none none
garciadeblasfa3eb332022-11-15 14:11:56 +0100350
351 track checks checkingroot_ok
352 [ "$USER" == "root" ] && FATAL "You are running the installer as root. The installer is prepared to be executed as a normal user with sudo privileges."
353 track checks noroot_ok
garciadeblasfa3eb332022-11-15 14:11:56 +0100354 ask_proceed
garciadeblas4d89c372021-11-25 11:57:18 +0100355 track checks proceed_ok
vijaynag8339ed22019-07-25 17:10:58 +0530356
garciadeblas0bc87522021-10-20 22:16:17 +0200357 echo "Installing OSM"
358
garciadeblas28d71bd2023-06-07 23:06:50 +0200359 [ -n "$DOCKER_REGISTRY_URL" ] && parse_docker_registry_url
360
garciadeblasf7a207d2025-01-30 15:54:08 +0100361 echo "Setting up external IP address"
362 setup_external_ip
garciadeblas0bc87522021-10-20 22:16:17 +0200363
364 # configure apt proxy
365 [ -n "$APT_PROXY_URL" ] && configure_apt_proxy $APT_PROXY_URL
Mike Marchettib8420852018-09-13 13:45:06 -0400366
garciadeblas4d89c372021-11-25 11:57:18 +0100367 track prereq prereqok_ok
Mike Marchettib8420852018-09-13 13:45:06 -0400368
garciadeblas250b0b62024-01-22 13:30:59 +0100369 if [ -n "$INSTALL_DOCKER" ] || [ "${K8S_CLUSTER_ENGINE}" == "kubeadm" ]; then
garciadeblas9c624882024-04-01 15:01:27 +0200370 if [ "${K8S_CLUSTER_ENGINE}" == "kubeadm" ]; then
371 echo "Kubeadm requires docker, so docker will be installed."
372 fi
garciadeblas9bae86f2024-05-31 17:15:18 +0200373 install_docker_ce
garciadeblas2efb98b2024-08-21 21:19:36 +0200374 [ -n "${DOCKER_REGISTRY_URL}" ] && docker_login
garciadeblas95804f82021-11-08 23:02:01 +0100375 fi
garciadeblas4d89c372021-11-25 11:57:18 +0100376 track docker_ce docker_ce_ok
David Garcia6cbfee12020-10-23 10:40:20 +0200377
garciadeblas8d8cd992024-05-21 16:04:14 +0200378 echo "Installing helm client ..."
garciadeblas9c624882024-04-01 15:01:27 +0200379 $OSM_DEVOPS/installers/install_helm_client.sh -D ${OSM_DEVOPS} ${DEBUG_INSTALL} || \
380 FATAL_TRACK k8scluster "install_helm_client.sh failed"
381 track helm_client install_helm_client_ok
382
garciadeblas8d8cd992024-05-21 16:04:14 +0200383 echo "Installing K8s cluster ..."
garciadeblas9bae86f2024-05-31 17:15:18 +0200384 install_k8s_cluster
garciadeblas8d8cd992024-05-21 16:04:14 +0200385 kubectl create namespace ${OSM_NAMESPACE}
garciadeblas9c624882024-04-01 15:01:27 +0200386 track k8scluster k8scluster_ok
David Garcia6cbfee12020-10-23 10:40:20 +0200387
garciadeblas8d8cd992024-05-21 16:04:14 +0200388 # Install mgmt cluster
389 echo "Installing mgmt cluster ..."
390 MGMTCLUSTER_INSTALL_OPTS="-D ${OSM_DEVOPS} ${DEBUG_INSTALL}"
391 [ -n "${INSTALL_MGMT_CLUSTER}" ] || MGMTCLUSTER_INSTALL_OPTS="${MGMTCLUSTER_INSTALL_OPTS} --no-mgmt-cluster"
392 [ -n "${INSTALL_AUX_CLUSTER}" ] || MGMTCLUSTER_INSTALL_OPTS="${MGMTCLUSTER_INSTALL_OPTS} --no-aux-cluster"
393 export KUBECONFIG_MGMT_CLUSTER=${KUBECONFIG_MGMT_CLUSTER:-"$HOME/.kube/config"}
394 export KUBECONFIG_AUX_CLUSTER=${KUBECONFIG_AUX_CLUSTER:-"$HOME/.kube/config"}
395 MGMTCLUSTER_INSTALL_OPTS="${MGMTCLUSTER_INSTALL_OPTS} -M ${KUBECONFIG_MGMT_CLUSTER}"
396 MGMTCLUSTER_INSTALL_OPTS="${MGMTCLUSTER_INSTALL_OPTS} -G ${KUBECONFIG_AUX_CLUSTER}"
397 echo "Options: ${MGMTCLUSTER_INSTALL_OPTS}"
398 $OSM_DEVOPS/installers/mgmt-cluster/install_mgmt_cluster.sh ${MGMTCLUSTER_INSTALL_OPTS} || \
399 FATAL_TRACK mgmtcluster "install_mgmt_cluster.sh failed"
garciadeblas1f6e09a2024-09-10 18:50:29 +0200400 if [ -n "${INSTALL_MGMT_CLUSTER}" ]; then
401 echo "Credentials stored under ${HOME}/.osm/.credentials"
402 echo "Repos stored under ${HOME}/.osm/repos"
403 fi
garciadeblas8d8cd992024-05-21 16:04:14 +0200404 track mgmtcluster mgmt_and_aux_cluster_ok
405
khelifi81a1a222025-04-28 09:35:51 +0100406 # Deploy OSM (OSM helm chart)
garciadeblas8d8cd992024-05-21 16:04:14 +0200407 echo "Deploying OSM in the K8s cluster ..."
garciadeblas9bae86f2024-05-31 17:15:18 +0200408 deploy_osm
409
garciadeblas8d8cd992024-05-21 16:04:14 +0200410 [ -z "$INSTALL_NOHOSTCLIENT" ] && echo "Installing osmclient ..." && install_osmclient
garciadeblas4d89c372021-11-25 11:57:18 +0100411 track osmclient osmclient_ok
beierlma4a37f72020-06-26 12:55:01 -0400412
garciadeblas4a9adcd2020-07-03 15:32:05 +0000413 echo -e "Checking OSM health state..."
garciadeblas325032a2023-04-13 18:07:44 +0200414 $OSM_DEVOPS/installers/osm_health.sh -s ${OSM_NAMESPACE} -k || \
garciadeblasf4f0e0f2021-12-03 11:37:40 +0100415 (echo -e "OSM is not healthy, but will probably converge to a healthy state soon." && \
garciadeblas325032a2023-04-13 18:07:44 +0200416 echo -e "Check OSM status with: kubectl -n ${OSM_NAMESPACE} get all" && \
garciadeblasf4f0e0f2021-12-03 11:37:40 +0100417 track healthchecks osm_unhealthy didnotconverge)
garciadeblas4d89c372021-11-25 11:57:18 +0100418 track healthchecks after_healthcheck_ok
vijaynag8339ed22019-07-25 17:10:58 +0530419
garciadeblas8d8cd992024-05-21 16:04:14 +0200420 echo -e "Adding local K8s cluster _system-osm-k8s to OSM ..."
garciadeblas0bc87522021-10-20 22:16:17 +0200421 add_local_k8scluster
garciadeblas4d89c372021-11-25 11:57:18 +0100422 track final_ops add_local_k8scluster_ok
garciadeblase92a18d2020-07-03 16:24:23 +0000423
garciadeblasf407c452024-08-22 14:23:40 +0200424 wget -q -O- https://osm-download.etsi.org/ftp/osm-16.0-sixteen/README2.txt &> /dev/null
garciadeblas6c66abf2018-05-16 14:46:19 +0200425 track end
garciadeblas0bc87522021-10-20 22:16:17 +0200426 sudo find /etc/osm
427 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblasd8bc5c32018-05-09 17:37:56 +0200428 return 0
429}
430
garciadeblasd8bc5c32018-05-09 17:37:56 +0200431function dump_vars(){
garciadeblas0bc87522021-10-20 22:16:17 +0200432 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
433 echo "APT_PROXY_URL=$APT_PROXY_URL"
garciadeblas250b0b62024-01-22 13:30:59 +0100434 echo "K8S_CLUSTER_ENGINE=$K8S_CLUSTER_ENGINE"
garciadeblas0bc87522021-10-20 22:16:17 +0200435 echo "DEBUG_INSTALL=$DEBUG_INSTALL"
garciadeblas0bc87522021-10-20 22:16:17 +0200436 echo "DOCKER_PROXY_URL=$DOCKER_PROXY_URL"
437 echo "DOCKER_REGISTRY_URL=$DOCKER_REGISTRY_URL"
438 echo "DOCKER_USER=$DOCKER_USER"
garciadeblasf69804b2024-01-22 13:09:21 +0100439 echo "INSTALL_DOCKER=$INSTALL_DOCKER"
garciadeblas0bc87522021-10-20 22:16:17 +0200440 echo "OSM_DEVOPS=$OSM_DEVOPS"
441 echo "OSM_DOCKER_TAG=$OSM_DOCKER_TAG"
garciadeblase3a84a52024-09-27 11:34:55 +0200442 echo "OSM_K8S_EXTERNAL_IP=$OSM_K8S_EXTERNAL_IP"
garciadeblas7b53d262022-11-04 23:18:48 +0100443 echo "OSM_HELM_WORK_DIR=$OSM_HELM_WORK_DIR"
garciadeblas325032a2023-04-13 18:07:44 +0200444 echo "OSM_NAMESPACE=$OSM_NAMESPACE"
garciadeblas0bc87522021-10-20 22:16:17 +0200445 echo "OSM_WORK_DIR=$OSM_WORK_DIR"
446 echo "PULL_IMAGES=$PULL_IMAGES"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200447 echo "RELEASE=$RELEASE"
448 echo "REPOSITORY=$REPOSITORY"
449 echo "REPOSITORY_BASE=$REPOSITORY_BASE"
450 echo "REPOSITORY_KEY=$REPOSITORY_KEY"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200451 echo "SHOWOPTS=$SHOWOPTS"
garciadeblas0bc87522021-10-20 22:16:17 +0200452 echo "UNINSTALL=$UNINSTALL"
garciadeblas0bc87522021-10-20 22:16:17 +0200453 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblasd8bc5c32018-05-09 17:37:56 +0200454}
455
garciadeblas453d4582020-12-16 19:03:10 +0100456function parse_docker_registry_url() {
garciadeblas0bc87522021-10-20 22:16:17 +0200457 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
garciadeblas453d4582020-12-16 19:03:10 +0100458 DOCKER_REGISTRY_USER=$(echo "$DOCKER_REGISTRY_URL" | awk '{split($1,a,"@"); split(a[1],b,":"); print b[1]}')
459 DOCKER_REGISTRY_PASSWORD=$(echo "$DOCKER_REGISTRY_URL" | awk '{split($1,a,"@"); split(a[1],b,":"); print b[2]}')
460 DOCKER_REGISTRY_URL=$(echo "$DOCKER_REGISTRY_URL" | awk '{split($1,a,"@"); print a[2]}')
garciadeblas0bc87522021-10-20 22:16:17 +0200461 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
garciadeblas453d4582020-12-16 19:03:10 +0100462}
463
garciadeblasadcf95e2022-01-28 17:15:39 +0100464function ctrl_c() {
465 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
466 echo "** Trapped CTRL-C"
467 FATAL "User stopped the installation"
468 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
469}
470
garciadeblasd8bc5c32018-05-09 17:37:56 +0200471UNINSTALL=""
garciadeblasd8bc5c32018-05-09 17:37:56 +0200472SHOWOPTS=""
garciadeblasd8bc5c32018-05-09 17:37:56 +0200473ASSUME_YES=""
garciadeblas0bc87522021-10-20 22:16:17 +0200474APT_PROXY_URL=""
garciadeblasb3797412024-06-06 14:26:24 +0200475K8S_CLUSTER_ENGINE="k3s"
garciadeblas0bc87522021-10-20 22:16:17 +0200476DEBUG_INSTALL=""
garciadeblas18582e92024-05-21 12:13:50 +0200477RELEASE="testing-daily"
478REPOSITORY="testing"
garciadeblasb7166812024-01-22 13:16:26 +0100479INSTALL_DOCKER=""
garciadeblas0d45bc82018-11-19 14:25:13 +0100480INSTALL_NOHOSTCLIENT=""
garciadeblas8d8cd992024-05-21 16:04:14 +0200481INSTALL_AUX_CLUSTER="y"
482INSTALL_MGMT_CLUSTER="y"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200483OSM_DEVOPS=
garciadeblas325032a2023-04-13 18:07:44 +0200484OSM_NAMESPACE=osm
Mike Marchettib8420852018-09-13 13:45:06 -0400485REPOSITORY_KEY="OSM%20ETSI%20Release%20Key.gpg"
garciadeblas870e60a2018-11-21 16:44:21 +0100486REPOSITORY_BASE="https://osm-download.etsi.org/repository/osm/debian"
Mike Marchettib8420852018-09-13 13:45:06 -0400487OSM_WORK_DIR="/etc/osm"
garciadeblas7b53d262022-11-04 23:18:48 +0100488OSM_HELM_WORK_DIR="${OSM_WORK_DIR}/helm"
vijaynag8339ed22019-07-25 17:10:58 +0530489OSM_HOST_VOL="/var/lib/osm"
garciadeblas325032a2023-04-13 18:07:44 +0200490OSM_NAMESPACE_VOL="${OSM_HOST_VOL}/${OSM_NAMESPACE}"
garciadeblas931a5122023-10-03 17:52:02 +0200491OSM_DOCKER_TAG="testing-daily"
garciadeblas0d45bc82018-11-19 14:25:13 +0100492DOCKER_USER=opensourcemano
493PULL_IMAGES="y"
Benjamin Diazaa0af712018-10-04 14:02:34 -0300494KAFKA_TAG=2.11-1.0.2
garciadeblas0ab16612022-02-22 14:23:57 +0100495KIWIGRID_K8S_SIDECAR_TAG="1.15.6"
496PROMETHEUS_TAG=v2.28.1
497GRAFANA_TAG=8.1.1
lavado6ad812e2019-11-29 10:58:58 -0500498PROMETHEUS_NODE_EXPORTER_TAG=0.18.1
499PROMETHEUS_CADVISOR_TAG=latest
lavado9a8df7c2018-10-24 09:35:34 -0500500KEYSTONEDB_TAG=10
Benjamin Diazba2cca92018-11-08 21:07:15 -0300501OSM_DATABASE_COMMONKEY=
lavado53eb8f52018-11-16 12:58:23 -0500502ELASTIC_VERSION=6.4.2
lavado4e8662c2018-11-28 11:28:14 -0500503ELASTIC_CURATOR_VERSION=5.5.4
vijaynag8339ed22019-07-25 17:10:58 +0530504POD_NETWORK_CIDR=10.244.0.0/16
505K8S_MANIFEST_DIR="/etc/kubernetes/manifests"
506RE_CHECK='^[a-z0-9]([-a-z0-9]*[a-z0-9])?$'
garciadeblas7f1e1042020-11-30 14:07:03 +0000507DOCKER_REGISTRY_URL=
508DOCKER_PROXY_URL=
509MODULE_DOCKER_TAG=
garciadeblas4d89c372021-11-25 11:57:18 +0100510OSM_INSTALLATION_TYPE="Default"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200511
khelifibca83312025-06-17 16:06:23 +0200512while getopts ":a:c:e:r:n:k:u:R:D:o:O:N:s:t:U:l:L:K:d:p:T:f:F:G:M:-: hy" o; do
garciadeblasd8bc5c32018-05-09 17:37:56 +0200513 case "${o}" in
garciadeblas0bc87522021-10-20 22:16:17 +0200514 a)
515 APT_PROXY_URL=${OPTARG}
516 ;;
garciadeblas250b0b62024-01-22 13:30:59 +0100517 c)
518 K8S_CLUSTER_ENGINE=${OPTARG}
519 [ "${K8S_CLUSTER_ENGINE}" == "kubeadm" ] && continue
520 [ "${K8S_CLUSTER_ENGINE}" == "k3s" ] && continue
garciadeblas250b0b62024-01-22 13:30:59 +0100521 echo -e "Invalid argument for -c : ' ${K8S_CLUSTER_ENGINE}'\n" >&2
522 usage && exit 1
523 ;;
garciadeblase3a84a52024-09-27 11:34:55 +0200524 e)
525 OSM_K8S_EXTERNAL_IP="${OPTARG}"
526 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +0200527 r)
Mike Marchettib8420852018-09-13 13:45:06 -0400528 REPOSITORY="${OPTARG}"
529 REPO_ARGS+=(-r "$REPOSITORY")
garciadeblasd8bc5c32018-05-09 17:37:56 +0200530 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +0200531 k)
Mike Marchettib8420852018-09-13 13:45:06 -0400532 REPOSITORY_KEY="${OPTARG}"
533 REPO_ARGS+=(-k "$REPOSITORY_KEY")
garciadeblasd8bc5c32018-05-09 17:37:56 +0200534 ;;
535 u)
Mike Marchettib8420852018-09-13 13:45:06 -0400536 REPOSITORY_BASE="${OPTARG}"
537 REPO_ARGS+=(-u "$REPOSITORY_BASE")
garciadeblasd8bc5c32018-05-09 17:37:56 +0200538 ;;
garciadeblas25e87d22020-01-31 14:27:29 +0100539 R)
540 RELEASE="${OPTARG}"
541 REPO_ARGS+=(-R "$RELEASE")
garciadeblas0d45bc82018-11-19 14:25:13 +0100542 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +0200543 D)
544 OSM_DEVOPS="${OPTARG}"
545 ;;
garciadeblas25e87d22020-01-31 14:27:29 +0100546 s)
garciadeblas325032a2023-04-13 18:07:44 +0200547 OSM_NAMESPACE="${OPTARG}" && [[ ! "${OPTARG}" =~ $RE_CHECK ]] && echo "Namespace $OPTARG is invalid. Regex used for validation is $RE_CHECK" && exit 0
garciadeblas25e87d22020-01-31 14:27:29 +0100548 ;;
549 t)
550 OSM_DOCKER_TAG="${OPTARG}"
Antonio Marsicof4ce57c2020-04-23 12:06:19 +0200551 REPO_ARGS+=(-t "$OSM_DOCKER_TAG")
garciadeblas25e87d22020-01-31 14:27:29 +0100552 ;;
553 U)
554 DOCKER_USER="${OPTARG}"
555 ;;
David Garcia404ae122020-04-28 11:47:55 +0200556 K)
557 CONTROLLER_NAME="${OPTARG}"
558 ;;
garciadeblas7f1e1042020-11-30 14:07:03 +0000559 d)
560 DOCKER_REGISTRY_URL="${OPTARG}"
561 ;;
562 p)
563 DOCKER_PROXY_URL="${OPTARG}"
564 ;;
565 T)
566 MODULE_DOCKER_TAG="${OPTARG}"
567 ;;
garciadeblas8d8cd992024-05-21 16:04:14 +0200568 M)
569 KUBECONFIG_MGMT_CLUSTER="${OPTARG}"
570 ;;
571 G)
572 KUBECONFIG_AUX_CLUSTER="${OPTARG}"
573 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +0200574 -)
575 [ "${OPTARG}" == "help" ] && usage && exit 0
garciadeblas0bc87522021-10-20 22:16:17 +0200576 [ "${OPTARG}" == "debug" ] && DEBUG_INSTALL="--debug" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +0200577 [ "${OPTARG}" == "uninstall" ] && UNINSTALL="y" && continue
garciadeblas8d8cd992024-05-21 16:04:14 +0200578 [ "${OPTARG}" == "no-mgmt-cluster" ] && INSTALL_MGMT_CLUSTER="" && continue
579 [ "${OPTARG}" == "no-aux-cluster" ] && INSTALL_AUX_CLUSTER="" && continue
garciadeblasf69804b2024-01-22 13:09:21 +0100580 [ "${OPTARG}" == "docker" ] && INSTALL_DOCKER="y" && continue
581 [ "${OPTARG}" == "nodocker" ] && INSTALL_DOCKER="" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +0200582 [ "${OPTARG}" == "showopts" ] && SHOWOPTS="y" && continue
Mike Marchettib8420852018-09-13 13:45:06 -0400583 [ "${OPTARG}" == "nohostclient" ] && INSTALL_NOHOSTCLIENT="y" && continue
garciadeblasd8bc5c32018-05-09 17:37:56 +0200584 echo -e "Invalid option: '--$OPTARG'\n" >&2
585 usage && exit 1
586 ;;
garciadeblas25e87d22020-01-31 14:27:29 +0100587 :)
588 echo "Option -$OPTARG requires an argument" >&2
589 usage && exit 1
590 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +0200591 \?)
592 echo -e "Invalid option: '-$OPTARG'\n" >&2
593 usage && exit 1
594 ;;
garciadeblas25e87d22020-01-31 14:27:29 +0100595 h)
596 usage && exit 0
597 ;;
garciadeblasd8bc5c32018-05-09 17:37:56 +0200598 y)
599 ASSUME_YES="y"
600 ;;
601 *)
602 usage && exit 1
603 ;;
604 esac
605done
606
garciadeblas0bc87522021-10-20 22:16:17 +0200607source $OSM_DEVOPS/common/all_funcs
garciadeblas6c66abf2018-05-16 14:46:19 +0200608
garciadeblas0bc87522021-10-20 22:16:17 +0200609[ -z "${DEBUG_INSTALL}" ] || DEBUG Debug is on
610[ -n "$SHOWOPTS" ] && dump_vars && exit 0
611
612# Uninstall if "--uninstall"
613if [ -n "$UNINSTALL" ]; then
khelifibca83312025-06-17 16:06:23 +0200614 ${OSM_DEVOPS}/installers/uninstall_osm.sh "$@" || \
615 FATAL_TRACK community_uninstall "uninstall_osm.sh failed"
garciadeblas0bc87522021-10-20 22:16:17 +0200616 echo -e "\nDONE"
garciadeblasd8bc5c32018-05-09 17:37:56 +0200617 exit 0
618fi
619
garciadeblas28d71bd2023-06-07 23:06:50 +0200620# Installation starts here
621
622# Get README and create OSM_TRACK_INSTALLATION_ID
garciadeblasf407c452024-08-22 14:23:40 +0200623wget -q -O- https://osm-download.etsi.org/ftp/osm-16.0-sixteen/README.txt &> /dev/null
garciadeblas28d71bd2023-06-07 23:06:50 +0200624export OSM_TRACK_INSTALLATION_ID="$(date +%s)-$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 16)"
625
626# Get OS info to be tracked
627os_distro=$(lsb_release -i 2>/dev/null | awk '{print $3}')
628echo $os_distro
629os_release=$(lsb_release -r 2>/dev/null | awk '{print $2}')
630echo $os_release
631os_info="${os_distro}_${os_release}"
632os_info="${os_info// /_}"
633
garciadeblas2fdfb382025-04-29 14:54:23 +0200634# Community_installer
garciadeblas2fdfb382025-04-29 14:54:23 +0200635# This is where installation starts
636install_osm
637echo -e "\nDONE"
638exit 0