Install Kong on Nonrtric deployment
Issue-ID: NONRTRIC-527
Change-Id: If456ca8338240fb162a47293257ea43a4ebe6d89
Signed-off-by: Lathish <lathishbabu.ganesan@est.tech>
diff --git a/bin/deploy-nonrtric b/bin/deploy-nonrtric
index 0643f4b..6770ad2 100755
--- a/bin/deploy-nonrtric
+++ b/bin/deploy-nonrtric
@@ -130,6 +130,16 @@
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 9e3c0cb..6ec73a4 100755
--- a/bin/undeploy-nonrtric
+++ b/bin/undeploy-nonrtric
@@ -31,6 +31,12 @@
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 f9595d8..1be6389 100644
--- a/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml
+++ b/nonrtric/RECIPE_EXAMPLE/example_recipe.yaml
@@ -35,7 +35,7 @@
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: