blob: dbfbac55475a1ace47aba70b8a412941bdda321c [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
garciadeblas0b7ef272023-05-10 10:50:34 +020019AIRFLOW_HELM_VERSION=1.9.0
garciadeblas7b53d262022-11-04 23:18:48 +010020
21# Install Airflow helm chart
22function install_airflow() {
23 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
24 # copy airflow-values.yaml to the destination folder
25 sudo mkdir -p ${OSM_HELM_WORK_DIR}
26 sudo cp ${OSM_DEVOPS}/installers/helm/values/airflow-values.yaml ${OSM_HELM_WORK_DIR}
garciadeblasd2d00c72022-11-25 17:21:46 +010027 # update airflow-values.yaml to use the right tag
28 echo "Updating Helm values file helm/values/airflow-values.yaml to use defaultAirflowTag: ${OSM_DOCKER_TAG}"
garciadeblas37d5a5f2023-07-20 17:02:19 +020029 sudo sed -i "s#defaultAirflowTag:.*#defaultAirflowTag: \"${OSM_DOCKER_TAG}\"#g" ${OSM_HELM_WORK_DIR}/airflow-values.yaml
garciadeblas836354f2023-05-10 18:12:00 +020030 echo "Updating Helm values file helm/values/airflow-values.yaml to use defaultAirflowRepository: ${DOCKER_REGISTRY_URL}${DOCKER_USER}/airflow"
31 sudo sed -i "s#defaultAirflowRepository:.*#defaultAirflowRepository: ${DOCKER_REGISTRY_URL}${DOCKER_USER}/airflow#g" ${OSM_HELM_WORK_DIR}/airflow-values.yaml
garciadeblas8080e4b2023-04-14 09:57:17 +020032
garciadeblas34824fc2023-10-10 15:32:36 +020033 helm repo add apache-airflow https://airflow.apache.org
34 helm repo update
35 helm upgrade airflow apache-airflow/airflow -n osm --create-namespace --install -f ${OSM_HELM_WORK_DIR}/airflow-values.yaml --version ${AIRFLOW_HELM_VERSION} --timeout 10m || FATAL_TRACK ngsa "Failed installing airflow helm chart"
garciadeblas7b53d262022-11-04 23:18:48 +010036 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
37}
38
garciadeblas7b53d262022-11-04 23:18:48 +010039# main
garciadeblasd2d00c72022-11-25 17:21:46 +010040
garciadeblas37630992023-05-09 13:33:22 +020041DOCKER_REGISTRY_URL=
42DOCKER_USER="opensourcemano"
garciadeblasd2d00c72022-11-25 17:21:46 +010043OSM_DEVOPS="/usr/share/osm-devops"
garciadeblas931a5122023-10-03 17:52:02 +020044OSM_DOCKER_TAG="testing-daily"
garciadeblas37630992023-05-09 13:33:22 +020045OSM_HELM_WORK_DIR="/etc/osm/helm"
garciadeblasd2d00c72022-11-25 17:21:46 +010046
garciadeblas37630992023-05-09 13:33:22 +020047while getopts ":D:d:t:r:U:-: " o; do
garciadeblas7b53d262022-11-04 23:18:48 +010048 case "${o}" in
49 D)
50 OSM_DEVOPS="${OPTARG}"
51 ;;
52 d)
53 OSM_HELM_WORK_DIR="${OPTARG}"
54 ;;
garciadeblasd2d00c72022-11-25 17:21:46 +010055 t)
56 OSM_DOCKER_TAG="${OPTARG}"
57 ;;
garciadeblas37630992023-05-09 13:33:22 +020058 r)
59 DOCKER_REGISTRY_URL="${OPTARG}"
60 ;;
61 U)
62 DOCKER_USER="${OPTARG}"
63 ;;
garciadeblas7b53d262022-11-04 23:18:48 +010064 -)
65 [ "${OPTARG}" == "debug" ] && DEBUG_INSTALL="y" && continue
66 echo -e "Invalid option: '--$OPTARG'\n" >&2
67 exit 1
68 ;;
69 :)
70 echo "Option -$OPTARG requires an argument" >&2
71 exit 1
72 ;;
73 \?)
74 echo -e "Invalid option: '-$OPTARG'\n" >&2
75 exit 1
76 ;;
77 *)
78 exit 1
79 ;;
80 esac
81done
82
83source $OSM_DEVOPS/common/logging
84source $OSM_DEVOPS/common/track
85
86echo "DEBUG_INSTALL=$DEBUG_INSTALL"
87echo "OSM_DEVOPS=$OSM_DEVOPS"
garciadeblasd2d00c72022-11-25 17:21:46 +010088echo "OSM_DOCKER_TAG=$OSM_DOCKER_TAG"
garciadeblas7b53d262022-11-04 23:18:48 +010089echo "OSM_HELM_WORK_DIR=$OSM_HELM_WORK_DIR"
90
91install_airflow
92track deploy_osm airflow_ok