From ad832473daeb2cd1f3ada1f84f28fda5e9c84753 Mon Sep 17 00:00:00 2001 From: Lathish Date: Wed, 26 May 2021 15:52:08 +0100 Subject: [PATCH] Install Kong on Nonrtric deployment Issue-ID: NONRTRIC-527 Change-Id: If456ca8338240fb162a47293257ea43a4ebe6d89 Signed-off-by: Lathish --- bin/deploy-nonrtric | 10 ++++++++++ bin/undeploy-nonrtric | 6 ++++++ nonrtric/RECIPE_EXAMPLE/example_recipe.yaml | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) 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 f9595d86..1be6389e 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: -- 2.16.6