[AAI] Add AAI http service for DCAE Service Mesh patch 39/131939/1
authorrope252 <gareth.roper@est.tech>
Tue, 1 Nov 2022 15:19:48 +0000 (15:19 +0000)
committerrope252 <gareth.roper@est.tech>
Tue, 1 Nov 2022 15:23:08 +0000 (15:23 +0000)
Adding functionality to deploy an additional service for AAI for port 80
If service mesh is enabled this service is required by the DCAE SM patch

Change-Id: I234bfb335b77b7ebdd2bc4c2596924314c9f3fca
Issue-ID: OOM-2820
Signed-off-by: rope252 <gareth.roper@est.tech>
kubernetes/aai/templates/service.yaml

index 750e1ba..aecb687 100644 (file)
@@ -35,3 +35,25 @@ spec:
   type: {{ .Values.service.type }}
   selector:
     app: {{ include "common.name" . }}
+{{- if include "common.onServiceMesh" . }}
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: {{ include "common.servicename" . }}-internal
+  namespace: {{ include "common.namespace" . }}
+  labels:
+    app: {{ include "common.name" . }}
+    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+    release: {{ include "common.release" . }}
+    heritage: {{ .Release.Service }}
+spec:
+  ports:
+    - name: {{ .Values.service.portName }}
+      port: {{ .Values.service.externalPlainPort }}
+      targetPort: {{ .Values.service.internalPlainPort }}
+  type: ClusterIP
+  selector:
+    app: {{ include "common.name" . }}
+{{- end }}
+