[RIC-442, RIC-397] - R5: Update globalRicId and add stateChangeMessageChannel in... 29/4229/1
authorss412g <shuky.har-noy@intl.att.com>
Wed, 24 Jun 2020 19:28:21 +0000 (22:28 +0300)
committerss412g <shuky.har-noy@intl.att.com>
Wed, 24 Jun 2020 19:28:43 +0000 (22:28 +0300)
Change-Id: I64e840caa8602d1c4a8626757d5c71f7bc8bba43
Signed-off-by: ss412g <shuky.har-noy@intl.att.com>
RECIPE_EXAMPLE/example_recipe.yaml
helm/e2mgr/templates/configmap.yaml

index 4d76364..0181bbd 100644 (file)
@@ -96,12 +96,13 @@ e2mgr:
   image:
     registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
     name: ric-plt-e2mgr
-    tag: 4.4.12
+    tag: 5.2.4
   privilegedmode: false
   globalRicId:
-    plmnId: "13F184"
-    ricNearRtId: 556670
-
+    ricId: "AACCE"
+    mcc: "310"
+    mnc: "411"
+  stateChangeMessageChannel: RAN_CONNECTION_STATUS_CHANGE
 
 e2term:
   alpha:
index 13175f0..cb41e5f 100644 (file)
@@ -132,14 +132,27 @@ data:
     {{- end }}
 
     globalRicId:
-      {{- if hasKey .Values.e2mgr "plmnId" }}
-      plmnId: {{ .Values.e2mgr.plmnId }}
+      {{- if hasKey .Values.e2mgr "ricId" }}
+      ricId: {{ .Values.e2mgr.ricId }}
       {{- else }}
-      plmnId: 131014
+      ricId: "AACCE"
       {{- end }}
-      {{- if hasKey .Values.e2mgr "ricNearRtId" }}
-      ricNearRtId: {{ .Values.e2mgr.ricNearRtId }}
+      {{- if hasKey .Values.e2mgr "mcc" }}
+      mcc: {{ .Values.e2mgr.mcc }}
       {{- else }}
-      ricNearRtId: 556670
+      mcc: "310"
       {{- end }}
+      {{- if hasKey .Values.e2mgr "mnc" }}
+      mnc: {{ .Values.e2mgr.mnc }}
+      {{- else }}
+      mnc: "411"
+      {{- end }}
+      
+    {{- if hasKey .Values.e2mgr "stateChangeMessageChannel" }}
+    stateChangeMessageChannel: {{ .Values.e2mgr.stateChangeMessageChannel }}
+    {{- else }}
+    stateChangeMessageChannel: "RAN_CONNECTION_STATUS_CHANGE"
+    {{- end }}
+      
+      
 ---