blob: 3ec7b5b64e2506d7e879cd77a8781f7ff6512df4 [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
Priyanka Jainc07e1d12018-05-03 12:52:04 +000017SDNC_DBHOST_POD=$(/consul/bin/kubectl -n {{ include "common.namespace" . }} get pod | grep -o "sdnc-dbhost-[^[:space:]]*")
jasmineWen85d9d732018-03-06 16:13:35 +000018if [ -n "$SDNC_DBHOST_POD" ]; then
Priyanka Jainc07e1d12018-05-03 12:52:04 +000019 if /consul/bin/kubectl -n {{ include "common.namespace" . }} exec -it $SDNC_DBHOST_POD -- ./healthcheck.sh |grep -i "mysqld is alive"; then
jasmineWen85d9d732018-03-06 16:13:35 +000020 echo Success. SDNC DBHost is running. 2>&1
21 exit 0
22 else
23 echo Failed. SDNC DBHost is not running. 2>&1
24 exit 1
25 fi
26else
27 echo Failed. SDNC DBHost is offline. 2>&1
28 exit 1
29fi