Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / sdnc / resources / geo / bin / sdnc.makeActive
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: makeactive <release> [namespace]"
21   exit 1
22 fi
23
24 RELEASE=$1
25 NAMESPACE=onap
26 if [ -n "$2" ];then
27   NAMESPACE=$2
28 fi
29
30 dir=$(dirname $0)
31 isPrimary=$( $dir/sdnc.isPrimaryCluster)
32 if [ "$isPrimary" = "true" ];then
33   SITE_NAME="sdnc01"
34 elif [ "$isPrimary" = "false" ];then
35   SITE_NAME="sdnc02"
36 else
37   echo "sdnc.isPrimaryCluster returned unexpected value \"$isPrimary\""
38   exit 1
39 fi
40
41 pod=$( kubectl -n $NAMESPACE get pods -l app=sdnc-prom,release=$RELEASE | grep Running | cut -f1 -d' ' )
42 if [ -z "$pod" ];then
43   echo "prom pod not found - is prom running?"
44   exit 1
45 fi
46
47 kubectl -n $NAMESPACE exec $pod -- /app/promoverride.py --id $SITE_NAME --config /app/config/config.json