| aguilard | 8c0a054 | 2023-11-13 13:16:32 +0000 | [diff] [blame] | 1 | #!/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 | |
| 19 | set -e |
| 20 | |
| 21 | # Extracts logs from "deployments" |
| 22 | for MODULE in 'grafana' 'keystone' 'lcm' 'mon' 'nbi' 'pol' 'ro' 'ngui' 'airflow-scheduler' 'pushgateway-prometheus-pushgateway' 'webhook-translator' |
| 23 | do |
| 24 | echo Saving ${MODULE} logs... |
| garciadeblas | a4b669e | 2024-06-25 16:40:44 +0200 | [diff] [blame^] | 25 | ssh -T -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null ubuntu@${OSM_IP_ADDRESS} \ |
| aguilard | 8c0a054 | 2023-11-13 13:16:32 +0000 | [diff] [blame] | 26 | 'kubectl -n osm logs deployment/"'${MODULE}'" --all-containers=true 2>&1 | cat' > "${ROBOT_REPORT_FOLDER}"/"osm-deploy-${MODULE}".log |
| 27 | done |
| 28 | |
| 29 | # Extracts logs from "statefulsets" |
| 30 | for MODULE in 'kafka' 'mongo' 'mysql' 'prometheus' 'zookeeper' 'alertmanager' |
| 31 | do |
| 32 | echo Saving ${MODULE} logs... |
| garciadeblas | a4b669e | 2024-06-25 16:40:44 +0200 | [diff] [blame^] | 33 | ssh -T -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null ubuntu@${OSM_IP_ADDRESS} \ |
| aguilard | 8c0a054 | 2023-11-13 13:16:32 +0000 | [diff] [blame] | 34 | 'kubectl -n osm logs statefulset/"'${MODULE}'" --all-containers=true 2>&1 | cat' > "${ROBOT_REPORT_FOLDER}"/"osm-sts-${MODULE}".log |
| 35 | done |
| 36 | |
| 37 | echo |
| 38 | echo All logs saved to ${ROBOT_REPORT_FOLDER}/ |
| 39 | |