Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / sdnc / resources / geo / bin / sdnc.monitor
1 #!/bin/sh
2 {{/*
3
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.
17 */}}
18
19 if [ $# -lt 1 ];then
20   echo "Usage: $(basename $0) [--debug] <release> [namespace]"
21   exit 1
22 fi
23
24 if [ "$1" = "--debug" -o "$1" = "-debug" -o "$1" = "-d" ];then
25   DEBUG="--debug"
26   shift
27 fi
28
29 RELEASE=$1
30 NAMESPACE=onap
31 if [ -n "$2" ];then
32   NAMESPACE=$2
33 fi
34
35 pod=$( kubectl -n $NAMESPACE get pods -l app=sdnc-prom,release=$RELEASE | grep Running | cut -f1 -d' ' )
36 if [ -z "$pod" ];then
37   echo "prom pod not found - is prom running?"
38   exit 1
39 fi
40
41 kubectl -n $NAMESPACE exec $pod -- /app/bin/sdnc.monitor $DEBUG