X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=bin%2Fundeploy-nonrtric;h=6ec73a495decd69dec78e82be2c2e42ab33059a0;hb=ad832473daeb2cd1f3ada1f84f28fda5e9c84753;hp=9e3c0cb2b17a9659e064f51bae765f3bac88553d;hpb=c89a1e2fb9bef90e756457d467397b66dc942b7c;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]"