blob: b90c3dc07f63e7e7f7855346db4d0564ba64fdf7 [file] [log] [blame]
garciadeblas7b53d262022-11-04 23:18:48 +01001#!/bin/bash
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
16set +eux
17
18# Helm chart 1.6.0 correspondes to Airflow 2.3.0
19AIRFLOW_HELM_VERSION=1.6.0
20PROMPUSHGW_HELM_VERSION=1.18.2
garciadeblasbae51f62023-03-28 18:27:20 +020021ALERTMANAGER_HELM_VERSION=0.22.0
garciadeblas7b53d262022-11-04 23:18:48 +010022
23# Install Airflow helm chart
24function install_airflow() {
25 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
26 # copy airflow-values.yaml to the destination folder
27 sudo mkdir -p ${OSM_HELM_WORK_DIR}
28 sudo cp ${OSM_DEVOPS}/installers/helm/values/airflow-values.yaml ${OSM_HELM_WORK_DIR}
garciadeblasd2d00c72022-11-25 17:21:46 +010029 # update airflow-values.yaml to use the right tag
30 echo "Updating Helm values file helm/values/airflow-values.yaml to use defaultAirflowTag: ${OSM_DOCKER_TAG}"
31 sudo sed -i "s#defaultAirflowTag:.*#defaultAirflowTag: ${OSM_DOCKER_TAG}#g" ${OSM_HELM_WORK_DIR}/airflow-values.yaml
garciadeblas7b53d262022-11-04 23:18:48 +010032 if ! helm -n osm status airflow 2> /dev/null ; then
33 # if it does not exist, create secrets and install
34 kubectl -n osm create secret generic airflow-webserver-secret --from-literal="webserver-secret-key=$(python3 -c 'import secrets; print(secrets.token_hex(16))')"
35 helm repo add apache-airflow https://airflow.apache.org
36 helm repo update
37 helm -n osm install airflow apache-airflow/airflow -f ${OSM_HELM_WORK_DIR}/airflow-values.yaml --version ${AIRFLOW_HELM_VERSION}
38 else
39 # if it exists, upgrade
40 helm repo update
41 helm -n osm upgrade airflow apache-airflow/airflow -f ${OSM_HELM_WORK_DIR}/airflow-values.yaml --version ${AIRFLOW_HELM_VERSION}
42 fi
43 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
44}
45
46# Install Prometheus Pushgateway helm chart
47function install_prometheus_pushgateway() {
48 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
49 if ! helm -n osm status pushgateway 2> /dev/null ; then
50 # if it does not exist, install
51 helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
52 helm repo update
53 helm -n osm install pushgateway prometheus-community/prometheus-pushgateway --version ${PROMPUSHGW_HELM_VERSION}
54 else
55 # if it exists, upgrade
56 helm repo update
57 helm -n osm upgrade pushgateway prometheus-community/prometheus-pushgateway --version ${PROMPUSHGW_HELM_VERSION}
58 fi
59 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
60}
61
garciadeblasbae51f62023-03-28 18:27:20 +020062# Install Prometheus AlertManager helm chart
63function install_prometheus_alertmanager() {
64 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
65 if ! helm -n osm status alertmanager 2> /dev/null ; then
66 # if it does not exist, install
67 helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
68 helm repo update
69 helm -n osm install alertmanager prometheus-community/alertmanager -f ${OSM_HELM_WORK_DIR}/alertmanager-values.yaml --version ${ALERTMANAGER_HELM_VERSION}
70 else
71 # if it exists, upgrade
72 helm repo update
73 helm -n osm upgrade alertmanager prometheus-community/alertmanager -f ${OSM_HELM_WORK_DIR}/alertmanager-values.yaml --version ${ALERTMANAGER_HELM_VERSION}
74 fi
75 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
76}
77
garciadeblas7b53d262022-11-04 23:18:48 +010078# main
garciadeblasd2d00c72022-11-25 17:21:46 +010079
80OSM_DEVOPS="/usr/share/osm-devops"
81OSM_HELM_WORK_DIR="/etc/osm/helm"
82OSM_DOCKER_TAG="13"
83
84while getopts ":D:d:t:-: " o; do
garciadeblas7b53d262022-11-04 23:18:48 +010085 case "${o}" in
86 D)
87 OSM_DEVOPS="${OPTARG}"
88 ;;
89 d)
90 OSM_HELM_WORK_DIR="${OPTARG}"
91 ;;
garciadeblasd2d00c72022-11-25 17:21:46 +010092 t)
93 OSM_DOCKER_TAG="${OPTARG}"
94 ;;
garciadeblas7b53d262022-11-04 23:18:48 +010095 -)
96 [ "${OPTARG}" == "debug" ] && DEBUG_INSTALL="y" && continue
97 echo -e "Invalid option: '--$OPTARG'\n" >&2
98 exit 1
99 ;;
100 :)
101 echo "Option -$OPTARG requires an argument" >&2
102 exit 1
103 ;;
104 \?)
105 echo -e "Invalid option: '-$OPTARG'\n" >&2
106 exit 1
107 ;;
108 *)
109 exit 1
110 ;;
111 esac
112done
113
114source $OSM_DEVOPS/common/logging
115source $OSM_DEVOPS/common/track
116
117echo "DEBUG_INSTALL=$DEBUG_INSTALL"
118echo "OSM_DEVOPS=$OSM_DEVOPS"
garciadeblasd2d00c72022-11-25 17:21:46 +0100119echo "OSM_DOCKER_TAG=$OSM_DOCKER_TAG"
garciadeblas7b53d262022-11-04 23:18:48 +0100120echo "OSM_HELM_WORK_DIR=$OSM_HELM_WORK_DIR"
121
122install_airflow
123track deploy_osm airflow_ok
124install_prometheus_pushgateway
125track deploy_osm pushgateway_ok
garciadeblasbae51f62023-03-28 18:27:20 +0200126install_prometheus_alertmanager
127track deploy_osm alertmanager_ok
garciadeblas7b53d262022-11-04 23:18:48 +0100128