From: Zhe Huang Date: Mon, 15 Apr 2019 19:56:40 +0000 (+0000) Subject: Add a nodeport for RMR. This allow E2Term to talk to E2mgr using RMR. X-Git-Tag: 0.0.2~108 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=fd801ad1198aa39df1eda5bf27cfa03da6e921ff;p=it%2Fdep.git Add a nodeport for RMR. This allow E2Term to talk to E2mgr using RMR. Change-Id: Ib711d3b7ba112922b2a5f118cc480c355dbfea29 Signed-off-by: Zhe Huang --- diff --git a/ricplt/e2mgr/charts/e2mgr/templates/service.yaml b/ricplt/e2mgr/charts/e2mgr/templates/service.yaml index 880e011d..19d58968 100644 --- a/ricplt/e2mgr/charts/e2mgr/templates/service.yaml +++ b/ricplt/e2mgr/charts/e2mgr/templates/service.yaml @@ -33,6 +33,11 @@ spec: targetPort: {{ .Values.service.http.port }} name: "{{ .Values.service.http.name }}" {{ if (eq .Values.service.type "NodePort") }}nodePort: {{ .Values.service.http.extport }} {{ end }} + - port: {{ .Values.service.nano.port }} + protocol: TCP + targetPort: {{ .Values.service.nano.port }} + name: "{{ .Values.service.nano.name }}" + {{ if (eq .Values.service.type "NodePort") }}nodePort: {{ .Values.service.nano.extport }} {{ end }} selector: app: {{ include "common.namespace" . }}-{{ include "common.name" . }} release: {{ .Release.Name }}