blob: 67aae58fac9578e3ad50e5046ec99d3edca14e09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o errexit
set -o pipefail
source _functions.sh
set +e
onap_svc_node_port=30498
declare -i timeout=18
declare -i interval=10
base_url="http://$(control_plane_ip):$onap_svc_node_port/v1"
function check_onap_svc {
while ((timeout > 0)); do
echo "try $timeout: Wait for $interval seconds to check for onap svc"
sleep $interval
call_api "$base_url/healthcheck"
call_api_ret=$?
if [[ $call_api_ret -eq 0 ]]; then
echo "onap svc health check is success"
exit 0
fi
((timeout-=1))
done
}
check_onap_svc
echo "Failed to check for onap svc"
exit 1
|