Update pretty formatting of tools/check_changes.sh
[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 PROMPUSHGW_HELM_VERSION=1.18.2
21 ALERTMANAGER_HELM_VERSION=0.22.0
22
23 # Install Airflow helm chart
24 function 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}
29 # 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
32 echo "Updating Helm values file helm/values/airflow-values.yaml to use defaultAirflowRepository: ${DOCKER_REGISTRY_URL}${DOCKER_USER}/airflow"
33 sudo sed -i "s#defaultAirflowRepository:.*#defaultAirflowRepository: ${DOCKER_REGISTRY_URL}${DOCKER_USER}/airflow#g" ${OSM_HELM_WORK_DIR}/airflow-values.yaml
34
35 helm repo add apache-airflow https://airflow.apache.org
36 helm repo update
37 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"
38 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
39 }
40
41 # Install Prometheus Pushgateway helm chart
42 function install_prometheus_pushgateway() {
43 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
44 helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
45 helm repo update
46 helm upgrade pushgateway prometheus-community/prometheus-pushgateway -n osm --create-namespace --install --version ${PROMPUSHGW_HELM_VERSION} || FATAL_TRACK ngsa "Failed installing pushgateway helm chart"
47 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
48 }
49
50 # Install Prometheus AlertManager helm chart
51 function install_prometheus_alertmanager() {
52 [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function
53 # copy alertmanager-values.yaml to the destination folder
54 sudo mkdir -p ${OSM_HELM_WORK_DIR}
55 sudo cp ${OSM_DEVOPS}/installers/helm/values/alertmanager-values.yaml ${OSM_HELM_WORK_DIR}
56 helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
57 helm repo update
58 helm upgrade alertmanager prometheus-community/alertmanager -n osm --create-namespace --install -f ${OSM_HELM_WORK_DIR}/alertmanager-values.yaml --version ${ALERTMANAGER_HELM_VERSION} || FATAL_TRACK ngsa "Failed installing alertmanager helm chart"
59 [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function
60 }
61
62 # main
63
64 DOCKER_REGISTRY_URL=
65 DOCKER_USER="opensourcemano"
66 OSM_DEVOPS="/usr/share/osm-devops"
67 OSM_DOCKER_TAG="testing-daily"
68 OSM_HELM_WORK_DIR="/etc/osm/helm"
69
70 while getopts ":D:d:t:r:U:-: " o; do
71 case "${o}" in
72 D)
73 OSM_DEVOPS="${OPTARG}"
74 ;;
75 d)
76 OSM_HELM_WORK_DIR="${OPTARG}"
77 ;;
78 t)
79 OSM_DOCKER_TAG="${OPTARG}"
80 ;;
81 r)
82 DOCKER_REGISTRY_URL="${OPTARG}"
83 ;;
84 U)
85 DOCKER_USER="${OPTARG}"
86 ;;
87 -)
88 [ "${OPTARG}" == "debug" ] && DEBUG_INSTALL="y" && continue
89 echo -e "Invalid option: '--$OPTARG'\n" >&2
90 exit 1
91 ;;
92 :)
93 echo "Option -$OPTARG requires an argument" >&2
94 exit 1
95 ;;
96 \?)
97 echo -e "Invalid option: '-$OPTARG'\n" >&2
98 exit 1
99 ;;
100 *)
101 exit 1
102 ;;
103 esac
104 done
105
106 source $OSM_DEVOPS/common/logging
107 source $OSM_DEVOPS/common/track
108
109 echo "DEBUG_INSTALL=$DEBUG_INSTALL"
110 echo "OSM_DEVOPS=$OSM_DEVOPS"
111 echo "OSM_DOCKER_TAG=$OSM_DOCKER_TAG"
112 echo "OSM_HELM_WORK_DIR=$OSM_HELM_WORK_DIR"
113
114 install_airflow
115 track deploy_osm airflow_ok
116 install_prometheus_pushgateway
117 track deploy_osm pushgateway_ok
118 install_prometheus_alertmanager
119 track deploy_osm alertmanager_ok
120