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
10 # http://www.apache.org/licenses/LICENSE-2.0
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.
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
21 export host=$(kubectl get nodes -o wide | tail -1 | sed s'/ */ /'g | cut -f6 -d' ')
25 echo "No argument supplied"
31 echo "Deploying application..."
32 echo "------------------------"
33 curl http://$host:31570/install?chart=$rapp
36 echo "Waiting for pod to start..."
37 echo "---------------------------"
38 kubectl wait deployment -n istio-nonrtric $rapp --for=condition=available --timeout=90s
41 echo "Checking pod status..."
42 echo "----------------------"
43 kubectl get pods -n istio-nonrtric
44 #kubectl get pods --show-labels -n istio-nonrtric
46 #if [ "$rapp" == "rapp-helloworld-invoker1" ] || [ "$rapp" == "rapp-helloworld-invoker2" ]; then
47 if [ "$rapp" != "rapp-helloworld-provider" ]; then
49 echo "Inspect the log for $rapp..."
50 echo "-----------------------------------------------"
51 kubectl logs -l app.kubernetes.io/name=$rapp -n istio-nonrtric
53 if [ "$rapp" = "rapp-helloworld-invoker1" ]; then
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