blob: d6c827a8ea8590b43495e743bc03daee40d87b8e [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
rohithrajneesh538db332023-08-09 14:48:30 +010023COMPONENTS="controlpanel a1controller a1simulator policymanagementservice informationservice rappcatalogueservice rappcatalogueenhancedservice nonrtricgateway dmaapadapterservice dmaapmediatorservice helmmanager orufhrecovery ransliceassurance capifcore ranpm"
PatrikBuhrc5c107d2021-05-26 09:26:09 +020024RECIPE_NAMESPACE=$(kubectl get cm --all-namespaces | grep nonrtric-recipe | awk '{print $1}')
25kubectl get configmap -n $RECIPE_NAMESPACE nonrtric-recipe -o jsonpath='{.data.recipe}' > /tmp/recipe.yaml
26
27if [ ! -s /tmp/recipe.yaml ]; then
28 echo "NONRTRIC recipe is not found. Are you sure it's deployed successfully?"
29 exit 0
30fi
31
32COMMON_BLOCK=$(cat /tmp/recipe.yaml | awk '/^common:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}')
33NAMESPACE_BLOCK=$(cat /tmp/recipe.yaml | awk '/^ namespace:/{getline; while ($0 ~ /^ .*|^ *$/) {print $0; if (getline == 0) {break}}}')
34NONRTRIC_NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *nonrtric:/{print $2}')
35RELEASE_PREFIX=$(echo "$COMMON_BLOCK" | awk '/^ *releasePrefix:/{print $2}')
Lathishad832472021-05-26 15:52:08 +010036INSTALL_KONG=$(cat /tmp/recipe.yaml | awk '/^ installKong:/{print $2}')
rohithrajneesh538db332023-08-09 14:48:30 +010037INSTALL_RANPM=$(cat /tmp/recipe.yaml | awk '/^ installRanpm:/{print $2}')
Lathishad832472021-05-26 15:52:08 +010038
39if [ "$INSTALL_KONG" = true ];then
40 echo "Uninstalling Kong"
41 helm delete kong-nonrtric --namespace kong
42fi
PatrikBuhrc5c107d2021-05-26 09:26:09 +020043
rohithrajneesh538db332023-08-09 14:48:30 +010044ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
45
46if [ "$INSTALL_RANPM" = true ];then
47 echo "Running uninstall-ranpm.sh"
48 chmod +x ${ROOT_DIR}/../ranpm/install/uninstall-ranpm.sh
49 ${ROOT_DIR}/../ranpm/install/uninstall-ranpm.sh
50 kubectl delete ns ran
51 echo "uninstall-ranpm.sh completed"
52fi
53
PatrikBuhrc5c107d2021-05-26 09:26:09 +020054echo "Undeploying NONRTRIC components [$COMPONENTS]"
55
56IS_HELM3=$(helm version -c --short|grep -e "^v3")
57HELM_FLAG=''
58if [ $IS_HELM3 ]
59then
60 HELM_FLAG=' -n '${NONRTRIC_NAMESPACE:-nonrtric}
61else
62 HELM_FLAG='--purge'
63fi
64
65helm delete ${HELM_FLAG} ${RELEASE_PREFIX}
66
67kubectl delete cm -n ${NONRTRIC_NAMESPACE:-nonrtric} nonrtric-recipe
68
69kubectl delete ns ${NONRTRIC_NAMESPACE:-nonrtric}
rohithrajneesh538db332023-08-09 14:48:30 +010070
71kubectl delete ns onap
aravind.est031a9112024-03-14 15:52:15 +000072
73# Cleanup ChartMuseum
74CM_PID_FILE="$ROOT_DIR/CM_PID.txt"
75if [ -f $CM_PID_FILE ]; then
76 echo "Cleaning up ChartMuseum..."
77 PID=$(cat "$CM_PID_FILE")
78 echo "Killing ChartMuseum with PID $PID"
79 kill $PID
80 rm $CM_PID_FILE
81 echo "ChartMuseum cleanup completed"
82fi