blob: 3f9f4014b37f917a2a809d5c98e76c459ce36487 [file] [log] [blame]
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -04001#!/bin/sh
Jakub Latuseke0e8ca72020-10-21 13:36:29 +02002{{/*
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -04003
4# Copyright © 2018 Amdocs
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
Jakub Latuseke0e8ca72020-10-21 13:36:29 +020017*/}}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040018
19if [ $# -lt 1 ];then
20 echo "Usage: $(basename $0) [--debug] <release> [namespace]"
21 exit 1
22fi
23
24if [ "$1" = "--debug" -o "$1" = "-debug" -o "$1" = "-d" ];then
25 DEBUG="--debug"
26 shift
27fi
28
29RELEASE=$1
30NAMESPACE=onap
31if [ -n "$2" ];then
32 NAMESPACE=$2
33fi
34
35pod=$( kubectl -n $NAMESPACE get pods -l app=sdnc-prom,release=$RELEASE | grep Running | cut -f1 -d' ' )
36if [ -z "$pod" ];then
37 echo "prom pod not found - is prom running?"
38 exit 1
39fi
40
41kubectl -n $NAMESPACE exec $pod -- /app/bin/sdnc.monitor $DEBUG