From: John Keeney Date: Fri, 18 Jun 2021 09:34:58 +0000 (+0000) Subject: Merge "Install Kong on Nonrtric deployment" X-Git-Tag: f-release~45 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=4c476953a3cbacdbc54fb41abfc571f23a68a1c0;hp=30bf13193742047dcf72c67d8efc46570aa568b5;p=it%2Fdep.git Merge "Install Kong on Nonrtric deployment" --- diff --git a/bin/deploy-nonrtric b/bin/deploy-nonrtric index 0643f4b4..6770ad24 100755 --- a/bin/deploy-nonrtric +++ b/bin/deploy-nonrtric @@ -130,6 +130,16 @@ COMMON_BLOCK=$(cat $OVERRIDEYAML | awk '/^common:/{getline; while ($0 ~ /^ +.*|^ NAMESPACE_BLOCK=$(cat $OVERRIDEYAML | 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 $OVERRIDEYAML | awk '/^ installKong:/{print $2}') +echo "Chart name- $PARENT_CHART" +echo "Install Kong- $INSTALL_KONG" + +if [ "$INSTALL_KONG" = true ];then + echo "Installing Kong" + helm repo add kong https://charts.konghq.com + helm repo update + helm install kong-nonrtric --namespace kong kong/kong --set ingressController.installCRDs=false --set admin.enabled=true +fi if ! kubectl get ns ${NONRTRIC_NAMESPACE:-nonrtric}> /dev/null 2>&1; then kubectl create ns ${NONRTRIC_NAMESPACE:-nonrtric} 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]" diff --git a/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml b/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml index 2d3a2c99..9d3cee65 100644 --- a/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml +++ b/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml @@ -35,7 +35,7 @@ common: namespace: nonrtric: nonrtric ingressClassName: kong - + installKong: true # A1 Conttroller may take few more minutes to start. Increase the initialDelaySeconds in liveness to avoid container restart. a1controller: