blob: af9a31db4976108c096e79dc97065c4b17390b13 [file] [log] [blame]
Lathish7e090012020-04-01 17:38:20 +01001#!/bin/bash
Lathish65cb6092020-03-26 15:06:31 +00002################################################################################
rohithrajneesh538db332023-08-09 14:48:30 +01003# Copyright (c) 2023 Nordix Foundation. #
aravind.est031a9112024-03-14 15:52:15 +00004# Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. #
Lathish65cb6092020-03-26 15:06:31 +00005# #
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
Lathish7e090012020-04-01 17:38:20 +010019# This script to undeploy the NONRTRIC
aravind.est031a9112024-03-14 15:52:15 +000020ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
21echo "** $ROOT_DIR"
Lathish65cb6092020-03-26 15:06:31 +000022
DenisGNoonanb4dae852024-03-26 14:46:10 +000023COMPONENTS="
24a1controller \
25a1simulator \
26capifcore \
27controlpanel \
28dmaapadapterservice \
29dmaapmediatorservice \
30dmeparticipant \
31helmmanager \
32informationservice \
33nonrtricgateway \
34orufhrecovery \
35policymanagementservice \
36ransliceassurance \
37rappcatalogueenhancedservice \
38rappcatalogueservice \
39rappmanager \
40servicemanager \
41"
42
PatrikBuhrc5c107d2021-05-26 09:26:09 +020043RECIPE_NAMESPACE=$(kubectl get cm --all-namespaces | grep nonrtric-recipe | awk '{print $1}')
44kubectl get configmap -n $RECIPE_NAMESPACE nonrtric-recipe -o jsonpath='{.data.recipe}' > /tmp/recipe.yaml
45
46if [ ! -s /tmp/recipe.yaml ]; then
47 echo "NONRTRIC recipe is not found. Are you sure it's deployed successfully?"
48 exit 0
49fi
50
51COMMON_BLOCK=$(cat /tmp/recipe.yaml | awk '/^common:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
52NAMESPACE_BLOCK=$(cat /tmp/recipe.yaml | awk '/^ namespace:/{getline; while ($0 ~ /^ .*|^ *$/) {print $0; if (getline == 0) {break}}}')
53NONRTRIC_NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *nonrtric:/{print $2}')
54RELEASE_PREFIX=$(echo "$COMMON_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
Lathishad832472021-05-26 15:52:08 +010055INSTALL_KONG=$(cat /tmp/recipe.yaml | awk '/^ installKong:/{print $2}')
rohithrajneesh538db332023-08-09 14:48:30 +010056INSTALL_RANPM=$(cat /tmp/recipe.yaml | awk '/^ installRanpm:/{print $2}')
Lathishad832472021-05-26 15:52:08 +010057
58if [ "$INSTALL_KONG" = true ];then
DenisGNoonanb4dae852024-03-26 14:46:10 +000059 echo "Warning - deleting Kong routes and services for ServiceManager"
60 SERVICEMANAGER_POD=$(kubectl get pods -o custom-columns=NAME:.metadata.name -l app=nonrtric-servicemanager --no-headers -n ${NONRTRIC_NAMESPACE:-nonrtric})
61 if [[ -n $SERVICEMANAGER_POD ]]; then
62 kubectl exec $SERVICEMANAGER_POD -n ${NONRTRIC_NAMESPACE:-nonrtric} -- ./kongclearup
63 else
64 echo "Error - Servicemanager pod not found, didn't delete Kong routes and services for ServiceManager"
65 fi
66 echo "Uninstalling kongstorage"
67 helm delete kongstorage -n "${NONRTRIC_NAMESPACE:-nonrtric}"
68 echo "Uninstalling Kong"
69 helm delete kong-nonrtric -n ${NONRTRIC_NAMESPACE:-nonrtric}
Lathishad832472021-05-26 15:52:08 +010070fi
PatrikBuhrc5c107d2021-05-26 09:26:09 +020071
rohithrajneesh538db332023-08-09 14:48:30 +010072ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
73
74if [ "$INSTALL_RANPM" = true ];then
75 echo "Running uninstall-ranpm.sh"
76 chmod +x ${ROOT_DIR}/../ranpm/install/uninstall-ranpm.sh
77 ${ROOT_DIR}/../ranpm/install/uninstall-ranpm.sh
78 kubectl delete ns ran
79 echo "uninstall-ranpm.sh completed"
80fi
81
PatrikBuhrc5c107d2021-05-26 09:26:09 +020082echo "Undeploying NONRTRIC components [$COMPONENTS]"
83
84IS_HELM3=$(helm version -c --short|grep -e "^v3")
85HELM_FLAG=''
86if [ $IS_HELM3 ]
87then
88 HELM_FLAG=' -n '${NONRTRIC_NAMESPACE:-nonrtric}
89else
90 HELM_FLAG='--purge'
91fi
92
93helm delete ${HELM_FLAG} ${RELEASE_PREFIX}
94
95kubectl delete cm -n ${NONRTRIC_NAMESPACE:-nonrtric} nonrtric-recipe
96
97kubectl delete ns ${NONRTRIC_NAMESPACE:-nonrtric}
rohithrajneesh538db332023-08-09 14:48:30 +010098
99kubectl delete ns onap
aravind.est031a9112024-03-14 15:52:15 +0000100
101# Cleanup ChartMuseum
102CM_PID_FILE="$ROOT_DIR/CM_PID.txt"
103if [ -f $CM_PID_FILE ]; then
104 echo "Cleaning up ChartMuseum..."
105 PID=$(cat "$CM_PID_FILE")
106 echo "Killing ChartMuseum with PID $PID"
107 kill $PID
108 rm $CM_PID_FILE
109 echo "ChartMuseum cleanup completed"
110fi