X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=bin%2Fundeploy-nonrtric;h=6ec73a495decd69dec78e82be2c2e42ab33059a0;hb=refs%2Fchanges%2F47%2F6147%2F2;hp=9e3c0cb2b17a9659e064f51bae765f3bac88553d;hpb=c5c107d6d940c784d57623c03104ebd8caac91f2;p=it%2Fdep.git diff --git a/bin/undeploy-nonrtric b/bin/undeploy-nonrtric index 9e3c0cb2..6ec73a49 100755 --- a/bin/undeploy-nonrtric +++ b/bin/undeploy-nonrtric @@ -31,6 +31,12 @@ COMMON_BLOCK=$(cat /tmp/recipe.yaml | awk '/^common:/{getline; while ($0 ~ /^ +. NAMESPACE_BLOCK=$(cat /tmp/recipe.yaml | awk '/^ namespace:/{getline; while ($0 ~ /^ .*|^ *$/) {print $0; if (getline == 0) {break}}}') NONRTRIC_NAMESPACE=$(echo "$NAMESPACE_BLOCK" | awk '/^ *nonrtric:/{print $2}') RELEASE_PREFIX=$(echo "$COMMON_BLOCK" | awk '/^ *releasePrefix:/{print $2}') +INSTALL_KONG=$(cat /tmp/recipe.yaml | awk '/^ installKong:/{print $2}') + +if [ "$INSTALL_KONG" = true ];then + echo "Uninstalling Kong" + helm delete kong-nonrtric --namespace kong +fi echo "Undeploying NONRTRIC components [$COMPONENTS]"