blob: 4d04f6f0c25df822c4f248f9fd6148bcb3ad932b [file] [log] [blame]
ktimoney2513eea2022-10-03 15:02:44 +01001#!/bin/sh
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2022 Nordix Foundation.
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# SPDX-License-Identifier: Apache-2.0
19# ============LICENSE_END=========================================================
20#
ktimoney076d02a2022-12-13 09:23:43 +000021export host=$(kubectl get nodes -o wide | tail -1 | sed s'/ */ /'g | cut -f6 -d' ')
ktimoney2513eea2022-10-03 15:02:44 +010022
23if [ -z "$1" ]
24 then
25 echo "No argument supplied"
26 exit 1
27fi
28
29rapp=$1
30
31echo "Deploying application..."
32echo "------------------------"
33curl http://$host:31570/install?chart=$rapp
34
35echo "\n"
36echo "Waiting for pod to start..."
37echo "---------------------------"
38kubectl wait deployment -n istio-nonrtric $rapp --for=condition=available --timeout=90s
39
40echo ""
41echo "Checking pod status..."
42echo "----------------------"
43kubectl get pods -n istio-nonrtric
44#kubectl get pods --show-labels -n istio-nonrtric
45
46#if [ "$rapp" == "rapp-helloworld-invoker1" ] || [ "$rapp" == "rapp-helloworld-invoker2" ]; then
47if [ "$rapp" != "rapp-helloworld-provider" ]; then
48 echo ""
49 echo "Inspect the log for $rapp..."
50 echo "-----------------------------------------------"
51 kubectl logs -l app.kubernetes.io/name=$rapp -n istio-nonrtric
52fi
53if [ "$rapp" = "rapp-helloworld-invoker1" ]; then
54 echo ""
55 echo "Inspect the log for $rapp jwt sidecar..."
56 echo "-----------------------------------------------------------"
57 kubectl logs -l app.kubernetes.io/name=$rapp -c jwt-proxy -n istio-nonrtric
58fi