Updated installation and components
[nonrtric/plt/ranpm.git] / install / uninstall-nrt.sh
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 check_error $? "$INST"
48
49 helm uninstall namespaces
50
51 # Print final result
52 if [ $NUM_ERRORS -eq 0 ]; then
53     echo "Uninstall PM Demo OK"
54 else
55     echo "Uninstall PM Demo failed, $NUM_ERRORS failures"
56     exit 1
57 fi
58
59 exit 0
60
61