ktimoney | 2513eea | 2022-10-03 15:02:44 +0100 | [diff] [blame^] | 1 | #!/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 | # |
| 21 | export host=$(minikube ip) |
| 22 | |
| 23 | if [ -z "$1" ] |
| 24 | then |
| 25 | echo "No argument supplied" |
| 26 | exit 1 |
| 27 | fi |
| 28 | |
| 29 | rapp=$1 |
| 30 | |
| 31 | echo "Deploying application..." |
| 32 | echo "------------------------" |
| 33 | curl http://$host:31570/install?chart=$rapp |
| 34 | |
| 35 | echo "\n" |
| 36 | echo "Waiting for pod to start..." |
| 37 | echo "---------------------------" |
| 38 | kubectl wait deployment -n istio-nonrtric $rapp --for=condition=available --timeout=90s |
| 39 | |
| 40 | echo "" |
| 41 | echo "Checking pod status..." |
| 42 | echo "----------------------" |
| 43 | kubectl 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 |
| 47 | if [ "$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 |
| 52 | fi |
| 53 | if [ "$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 |
| 58 | fi |