blob: 818503e9b66ce44ef7e5e52d138205b44e0ae757 [file] [log] [blame]
Jakub Latusekd4e96f42020-10-21 13:36:29 +02001{{/*
Mukul2b4e7532018-08-03 10:41:29 +00002# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jakub Latusekd4e96f42020-10-21 13:36:29 +020015*/}}
Mukul2b4e7532018-08-03 10:41:29 +000016
Priyanka9eb4adc2018-05-22 10:53:36 +000017kafkapod=$(/consul/bin/kubectl -n {{ include "common.namespace" . }} get pod | grep -o "[^[:space:]]*-message-router-kafka-[^[:space:]]*")
jasmineWen85d9d732018-03-06 16:13:35 +000018if [ -n "$kafkapod" ]; then
Priyanka Jainc07e1d12018-05-03 12:52:04 +000019 if /consul/bin/kubectl -n {{ include "common.namespace" . }} exec -it $kafkapod -- ps ef | grep -i kafka; then
jasmineWen85d9d732018-03-06 16:13:35 +000020 echo Success. Kafka process is running. 2>&1
21 exit 0
22 else
23 echo Failed. Kafka is not running. 2>&1
24 exit 1
25 fi
26else
27 echo Failed. Kafka container is offline. 2>&1
28 exit 1
29fi