blob: 7b324ed36cc12f2d2dac57ce88c6bf49fc24cb76 [file] [log] [blame]
BjornMagnussonXAc5655db2023-03-17 14:55:16 +01001#!/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
21check_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
30NUM_ERRORS=0
31
32helm uninstall -n ran ran
33
34helm uninstall -n nonrtric nrt-pm
35
36helm uninstall -n nonrtric nrt-base-1
37
38helm uninstall -n nonrtric nrt-base-0
39
40
41INST="strimzi-kafka CRDs"
42echo "##########################"
43echo "Uninstall $INST"
44
45helm repo remove strimzi
46helm uninstall -n nonrtric strimzi-kafka-crds
47#kubectl delete -f 'https://strimzi.io/install/latest?namespace=nonrtric' -n nonrtric
48check_error $? "$INST"
49
50helm uninstall namespaces
51
52# Print final result
53if [ $NUM_ERRORS -eq 0 ]; then
54 echo "Uninstall PM Demo OK"
55else
56 echo "Uninstall PM Demo failed, $NUM_ERRORS failures"
57 exit 1
58fi
59
60exit 0
61
62