dbfbac55475a1ace47aba70b8a412941bdda321c
[osm/devops.git] / installers / install_ngsa.sh
1 #!/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
16 set +eux
17
18 # Helm chart 1.6.0 correspondes to Airflow 2.3.0
19 AIRFLOW_HELM_VERSION=1.9.0
20
21 # Install Airflow helm chart
22 function 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}
27 # 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}"
29 sudo sed -i "s#defaultAirflowTag:.*#defaultAirflowTag: \"${OSM_DOCKER_TAG}\"#g" ${OSM_HELM_WORK_DIR}/airflow-values.yaml
30 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
32
33 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"
36 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
37 }
38
39 # main
40
41 DOCKER_REGISTRY_URL=
42 DOCKER_USER="opensourcemano"
43 OSM_DEVOPS="/usr/share/osm-devops"
44 OSM_DOCKER_TAG="testing-daily"
45 OSM_HELM_WORK_DIR="/etc/osm/helm"
46
47 while getopts ":D:d:t:r:U:-: " o; do
48 case "${o}" in
49 D)
50 OSM_DEVOPS="${OPTARG}"
51 ;;
52 d)
53 OSM_HELM_WORK_DIR="${OPTARG}"
54 ;;
55 t)
56 OSM_DOCKER_TAG="${OPTARG}"
57 ;;
58 r)
59 DOCKER_REGISTRY_URL="${OPTARG}"
60 ;;
61 U)
62 DOCKER_USER="${OPTARG}"
63 ;;
64 -)
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
81 done
82
83 source $OSM_DEVOPS/common/logging
84 source $OSM_DEVOPS/common/track
85
86 echo "DEBUG_INSTALL=$DEBUG_INSTALL"
87 echo "OSM_DEVOPS=$OSM_DEVOPS"
88 echo "OSM_DOCKER_TAG=$OSM_DOCKER_TAG"
89 echo "OSM_HELM_WORK_DIR=$OSM_HELM_WORK_DIR"
90
91 install_airflow
92 track deploy_osm airflow_ok