blob: 7973f32c611c364f676aa36f3df4dbb72259c97c [file] [log] [blame]
aguilard8c0a0542023-11-13 13:16:32 +00001#!/usr/bin/env bash
2#######################################################################################
3# Copyright ETSI Contributors and Others.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#######################################################################################
18
19set -e
20
21# Extracts logs from "deployments"
22for MODULE in 'grafana' 'keystone' 'lcm' 'mon' 'nbi' 'pol' 'ro' 'ngui' 'airflow-scheduler' 'pushgateway-prometheus-pushgateway' 'webhook-translator'
23do
24 echo Saving ${MODULE} logs...
garciadeblasa4b669e2024-06-25 16:40:44 +020025 ssh -T -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null ubuntu@${OSM_IP_ADDRESS} \
aguilard8c0a0542023-11-13 13:16:32 +000026 'kubectl -n osm logs deployment/"'${MODULE}'" --all-containers=true 2>&1 | cat' > "${ROBOT_REPORT_FOLDER}"/"osm-deploy-${MODULE}".log
27done
28
29# Extracts logs from "statefulsets"
30for MODULE in 'kafka' 'mongo' 'mysql' 'prometheus' 'zookeeper' 'alertmanager'
31do
32 echo Saving ${MODULE} logs...
garciadeblasa4b669e2024-06-25 16:40:44 +020033 ssh -T -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null ubuntu@${OSM_IP_ADDRESS} \
aguilard8c0a0542023-11-13 13:16:32 +000034 'kubectl -n osm logs statefulset/"'${MODULE}'" --all-containers=true 2>&1 | cat' > "${ROBOT_REPORT_FOLDER}"/"osm-sts-${MODULE}".log
35done
36
37echo
38echo All logs saved to ${ROBOT_REPORT_FOLDER}/
39