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