BjornMagnussonXA | c5655db | 2023-03-17 14:55:16 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # ============LICENSE_START=============================================== |
| 4 | # Copyright (C) 2023 Nordix Foundation. All rights reserved. |
| 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 | # ============LICENSE_END================================================= |
| 18 | # |
| 19 | |
| 20 | # Error printout and logging |
| 21 | check_error() { |
| 22 | if [ $1 -eq 0 ]; then |
| 23 | echo " Uninstall $2 OK" |
| 24 | else |
| 25 | echo " Unistall $2 failed" |
| 26 | let NUM_ERRORS=NUM_ERRORS+1 |
| 27 | fi |
| 28 | } |
| 29 | |
| 30 | NUM_ERRORS=0 |
| 31 | |
| 32 | helm uninstall -n ran ran |
| 33 | |
| 34 | helm uninstall -n nonrtric nrt-pm |
| 35 | |
| 36 | helm uninstall -n nonrtric nrt-base-1 |
| 37 | |
| 38 | helm uninstall -n nonrtric nrt-base-0 |
| 39 | |
| 40 | |
| 41 | INST="strimzi-kafka CRDs" |
| 42 | echo "##########################" |
| 43 | echo "Uninstall $INST" |
| 44 | |
| 45 | helm repo remove strimzi |
| 46 | helm uninstall -n nonrtric strimzi-kafka-crds |
| 47 | #kubectl delete -f 'https://strimzi.io/install/latest?namespace=nonrtric' -n nonrtric |
| 48 | check_error $? "$INST" |
| 49 | |
| 50 | helm uninstall namespaces |
| 51 | |
| 52 | # Print final result |
| 53 | if [ $NUM_ERRORS -eq 0 ]; then |
| 54 | echo "Uninstall PM Demo OK" |
| 55 | else |
| 56 | echo "Uninstall PM Demo failed, $NUM_ERRORS failures" |
| 57 | exit 1 |
| 58 | fi |
| 59 | |
| 60 | exit 0 |
| 61 | |
| 62 | |