X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ric-platform%2F50-RIC-Platform%2Fhelm%2Fe2mgr%2Ftemplates%2Fdeployment.yaml;h=330f12361b2fe0f25b3f2c68db5f56c9027e8e4b;hb=3803859c341dc62bdcd79ba94be585592a94672b;hp=e62dfd4a456cb1e89ba366996ff284158fcccc18;hpb=948cb92657906b0c6ede9e1f82a56b95521fe0b4;p=it%2Fdep.git diff --git a/ric-platform/50-RIC-Platform/helm/e2mgr/templates/deployment.yaml b/ric-platform/50-RIC-Platform/helm/e2mgr/templates/deployment.yaml index e62dfd4a..330f1236 100644 --- a/ric-platform/50-RIC-Platform/helm/e2mgr/templates/deployment.yaml +++ b/ric-platform/50-RIC-Platform/helm/e2mgr/templates/deployment.yaml @@ -19,9 +19,9 @@ apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "common.deploymentname.e2mgr" .}} - namespace: {{ include "common.namespace" . }} + namespace: {{ include "common.namespace.platform" . }} labels: - app: {{ include "common.namespace" . }}-{{ include "common.name" . }} + app: {{ include "common.namespace.platform" . }}-{{ include "common.name.e2mgr" . }} chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} @@ -29,35 +29,35 @@ spec: replicas: {{ .Values.e2mgr.replicaCount }} selector: matchLabels: - app: {{ include "common.namespace" . }}-{{ include "common.name" . }} + app: {{ include "common.namespace.platform" . }}-{{ include "common.name.e2mgr" . }} release: {{ .Release.Name }} template: metadata: labels: - app: {{ include "common.namespace" . }}-{{ include "common.name" . }} + app: {{ include "common.namespace.platform" . }}-{{ include "common.name.e2mgr" . }} release: {{ .Release.Name }} spec: - hostname: {{ .Chart.Name }} + hostname: {{ include "common.name.e2mgr" . }} imagePullSecrets: - name: {{ include "common.repositoryCred" . }} containers: - - name: {{ include "common.namespace" . }}-{{ include "common.name" . }} + - name: {{ include "common.containername.e2mgr" . }} image: {{ include "common.repository" . }}/{{ .Values.e2mgr.image.name }}:{{ .Values.e2mgr.image.tag }} imagePullPolicy: {{ include "common.pullPolicy" . }} volumeMounts: - mountPath: /opt/E2Manager/router.txt name: local-router-file subPath: router.txt - env: - - name: RMR_RTG_SVC - value: "{{ .Values.e2mgr.env.RMR_RTG_SVC }}" - - name: RIC_ID - value: "{{ .Values.e2mgr.env.RIC_ID }}" + envFrom: + - configMapRef: + name: {{ include "common.configmapname.e2mgr" . }}-env ports: - name: "http" containerPort: {{ .Values.e2mgr.service.http.containerPort }} - - name: "rmr" - containerPort: {{ .Values.e2mgr.service.rmr.containerPort }} + - name: "rmrroute" + containerPort: {{ .Values.e2mgr.service.rmr.route.port }} + - name: "rmrdata" + containerPort: {{ .Values.e2mgr.service.rmr.data.port }} stdin: true tty: true securityContext: