Adding Kong IC for AUX functions 29/429/4
authorrshacham <rshacham@research.att.com>
Thu, 27 Jun 2019 21:55:39 +0000 (21:55 +0000)
committerwrider <lji@research.att.com>
Sun, 30 Jun 2019 02:41:21 +0000 (22:41 -0400)
Change-Id: I448591107f5907b0ec0cf548955f1b1b3c6385f4
Signed-off-by: rshacham <rshacham@research.att.com>
ric-aux/80-Auxiliary-Functions/bin/install
ric-aux/80-Auxiliary-Functions/bin/uninstall
ric-aux/80-Auxiliary-Functions/helm/kong-aux/.helmignore [new file with mode: 0644]
ric-aux/80-Auxiliary-Functions/helm/kong-aux/Chart.yaml [new file with mode: 0644]
ric-aux/80-Auxiliary-Functions/helm/kong-aux/requirements.yaml [new file with mode: 0644]
ric-aux/80-Auxiliary-Functions/helm/kong-aux/values.yaml [new file with mode: 0644]
ric-aux/80-Auxiliary-Functions/helm/ves/templates/ingress-ves.yaml [new file with mode: 0644]

index c44cfbb..df15d9b 100755 (executable)
@@ -36,7 +36,7 @@ else
    NAMESPACE=$RICAUX_NAMESPACE
 fi
 
-RICAUX_COMPONENTS="dashboard ves message-router"
+RICAUX_COMPONENTS="dashboard ves message-router kong-aux"
 
 echo "Deploying RIC AUX components [$RICAUX_COMPONENTS]"
 echo "Platform Namespace: $NAMESPACE"
@@ -45,11 +45,23 @@ echo "Helm Release Name: $RELEASE_NAME"
 
 COMMON_CHART_VERSION=$(cat $DIR/../../../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
 
+helm repo remove local
+
 helm package -d /tmp $DIR/../../../ric-common/Common-Template/helm/ric-common/
 
 
 for component in $RICAUX_COMPONENTS; do
   echo "Preparing chart for comonent $component"
+
+  if [ $component = "kong-aux" ]; then
+      mkdir -p $DIR/../helm/$component/charts
+      helm dep up $DIR/../helm/$component
+      helm install --namespace ricaux --name "${RELEASE_NAME}-$component" $DIR/../helm/$component --set postgresql.enabled=false --set env.database=off
+      continue
+  fi
+
+  echo "not kong component"  
+
   mkdir -p  $DIR/../helm/$component/charts/
   cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/$component/charts/
   if [ -z $OVERRIDEYAML ]; then
index 91e56e8..67e6840 100755 (executable)
@@ -35,7 +35,7 @@ else
    NAMESPACE=$RICAUX_NAMESPACE
 fi
 
-RICAUX_COMPONENTS="dashboard message-router ves"
+RICAUX_COMPONENTS="dashboard message-router ves kong-aux"
 
 echo "Undeploying RIC AUX components [$RICAUX_COMPONENTS]"
 echo "Platform Namespace: $NAMESPACE"
diff --git a/ric-aux/80-Auxiliary-Functions/helm/kong-aux/.helmignore b/ric-aux/80-Auxiliary-Functions/helm/kong-aux/.helmignore
new file mode 100644 (file)
index 0000000..50af031
--- /dev/null
@@ -0,0 +1,22 @@
+# Patterns to ignore when building packages.
+# This supports shell glob matching, relative path matching, and
+# negation (prefixed with !). Only one pattern per line.
+.DS_Store
+# Common VCS dirs
+.git/
+.gitignore
+.bzr/
+.bzrignore
+.hg/
+.hgignore
+.svn/
+# Common backup files
+*.swp
+*.bak
+*.tmp
+*~
+# Various IDEs
+.project
+.idea/
+*.tmproj
+.vscode/
diff --git a/ric-aux/80-Auxiliary-Functions/helm/kong-aux/Chart.yaml b/ric-aux/80-Auxiliary-Functions/helm/kong-aux/Chart.yaml
new file mode 100644 (file)
index 0000000..caf0bbb
--- /dev/null
@@ -0,0 +1,5 @@
+apiVersion: v1
+appVersion: "1.0"
+description: A Helm chart for Kubernetes
+name: kong_aux
+version: 1.0.0
diff --git a/ric-aux/80-Auxiliary-Functions/helm/kong-aux/requirements.yaml b/ric-aux/80-Auxiliary-Functions/helm/kong-aux/requirements.yaml
new file mode 100644 (file)
index 0000000..2587ea7
--- /dev/null
@@ -0,0 +1,21 @@
+################################################################################
+#   Copyright (c) 2019 AT&T Intellectual Property.                             #
+#   Copyright (c) 2019 Nokia.                                                  #
+#                                                                              #
+#   Licensed under the Apache License, Version 2.0 (the "License");            #
+#   you may not use this file except in compliance with the License.           #
+#   You may obtain a copy of the License at                                    #
+#                                                                              #
+#       http://www.apache.org/licenses/LICENSE-2.0                             #
+#                                                                              #
+#   Unless required by applicable law or agreed to in writing, software        #
+#   distributed under the License is distributed on an "AS IS" BASIS,          #
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
+#   See the License for the specific language governing permissions and        #
+#   limitations under the License.                                             #
+################################################################################
+
+dependencies:
+  - name: kong
+    repository: '@stable'
+    version: ~0.12.2
\ No newline at end of file
diff --git a/ric-aux/80-Auxiliary-Functions/helm/kong-aux/values.yaml b/ric-aux/80-Auxiliary-Functions/helm/kong-aux/values.yaml
new file mode 100644 (file)
index 0000000..f55709b
--- /dev/null
@@ -0,0 +1,19 @@
+# Default values for kong_platform.
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+
+kong:
+  ingressController:
+    enabled: true
+
+  postgresql:
+    enabled: false
+
+  env:
+    database: "off"
+
+  proxy:
+    http:
+      nodePort: 32080
+    tls:
+      nodePort: 32443
\ No newline at end of file
diff --git a/ric-aux/80-Auxiliary-Functions/helm/ves/templates/ingress-ves.yaml b/ric-aux/80-Auxiliary-Functions/helm/ves/templates/ingress-ves.yaml
new file mode 100644 (file)
index 0000000..7a91f7d
--- /dev/null
@@ -0,0 +1,12 @@
+apiVersion: extensions/v1beta1
+kind: Ingress
+metadata:
+  name: ric-ingress-ves
+spec:
+  rules:
+  - http:
+      paths:
+      - path: /vescollector
+        backend:
+          serviceName: xdcae-ves-collector
+          servicePort: 8080