Kong as Ingress Controller 35/5935/6
authorLathish <lathishbabu.ganesan@est.tech>
Mon, 26 Apr 2021 11:44:50 +0000 (12:44 +0100)
committerLathish <lathishbabu.ganesan@est.tech>
Thu, 6 May 2021 13:03:25 +0000 (14:03 +0100)
Issue-ID: NONRTRIC-499
Change-Id: I3b1b9bd4fb8f6d35320f77e5ded200514e869452
Signed-off-by: Lathish <lathishbabu.ganesan@est.tech>
nonrtric/RECIPE_EXAMPLE/example_recipe.yaml
nonrtric/helm/enrichmentservice/templates/ingress.yaml [new file with mode: 0644]
nonrtric/helm/nonrtric/requirements.yaml
nonrtric/helm/policymanagementservice/templates/ingress.yaml [new file with mode: 0644]
nonrtric/helm/policymanagementservice/templates/pv.yaml
ric-common/Common-Template/helm/nonrtric-common/templates/_nonrtricgateway.tpl

index 7efd8e1..07d0689 100644 (file)
@@ -23,7 +23,9 @@ common:
 # Change the namespaces using the following options
   namespace:
     nonrtric: nonrtric
-# any nonrtric chart can be installed: nonrtric (all components), controlpanel, a1controller, a1simulator, policymanagementservice, enrichmentservice, rappcatalogueservice, nonrtricgateway
+  ingressClassName: kong
+# any nonrtric chart can be installed: nonrtric (all components), controlpanel, a1controller, a1simulator, policymanagementservice, 
+# enrichmentservice, rappcatalogueservice, nonrtricgateway
 component: nonrtric
 
 # A1 Conttroller may take few more minutes to start. Increase the initialDelaySeconds in liveness to avoid container restart.
diff --git a/nonrtric/helm/enrichmentservice/templates/ingress.yaml b/nonrtric/helm/enrichmentservice/templates/ingress.yaml
new file mode 100644 (file)
index 0000000..5a1fb33
--- /dev/null
@@ -0,0 +1,41 @@
+################################################################################
+#   Copyright (c) 2021 Nordix Foundation.                                      #
+#                                                                              #
+#   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.                                             #
+################################################################################
+
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+  name: {{ include "common.name.enrichmentservice" . }}
+  namespace: {{ include "common.namespace.nonrtric" . }}
+
+spec:
+  ingressClassName: {{ include "common.ingressClassName" . }}
+  rules:
+    - http:
+        paths:
+          - path: "/ei-producer"
+            backend:
+              service:
+                name: {{ include "common.name.enrichmentservice" . }}
+                port: 
+                  number: {{ .Values.enrichmentservice.service.internalPort1 }}
+            pathType: Prefix
+            path: "/data-consumer"
+            backend:
+              service:
+                name: {{ include "common.name.enrichmentservice" . }}
+                port: 
+                  number: {{ .Values.enrichmentservice.service.internalPort1 }}
+            pathType: Prefix
index 2a9e512..bc6a3b0 100644 (file)
@@ -38,5 +38,4 @@ dependencies:
     repository: "@local"
   - name: nonrtricgateway
     version: ~1.0.0
-    repository: "@local"
-
+    repository: "@local"
\ No newline at end of file
diff --git a/nonrtric/helm/policymanagementservice/templates/ingress.yaml b/nonrtric/helm/policymanagementservice/templates/ingress.yaml
new file mode 100644 (file)
index 0000000..67eac10
--- /dev/null
@@ -0,0 +1,34 @@
+################################################################################
+#   Copyright (c) 2021 Nordix Foundation.                                      #
+#                                                                              #
+#   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.                                             #
+################################################################################
+
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+  name: {{ include "common.name.policymanagementservice" . }}
+  namespace: {{ include "common.namespace.nonrtric" . }}
+
+spec:
+  ingressClassName: {{ include "common.ingressClassName" . }}
+  rules:
+    - http:
+        paths:
+          - backend:
+              service:
+                name: {{ include "common.name.policymanagementservice" . }}
+                port:
+                  number: {{ .Values.policymanagementservice.service.internalPort1 }}
+            path: "/a1-policy"
+            pathType: Prefix
index f840a78..929c7e5 100644 (file)
@@ -35,4 +35,3 @@ spec:
   hostPath:
     path: {{ .Values.policymanagementservice.persistence.mountPath }}/{{ .Values.policymanagementservice.persistence.mountSubPath }}
   storageClassName: "{{ .Values.policymanagementservice.persistence.storageClass }}"
-
index 0d1435f..d14e540 100644 (file)
@@ -22,3 +22,7 @@
   {{- $name := ( include "common.name.nonrtricgateway" . ) -}}
   {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
 {{- end -}}
+
+{{- define "common.ingressClassName" -}}
+  {{- printf "kong" -}}
+{{- end -}}