Merge "[RIC-357] R5 - DevOps: E2M to implement K8S healthcheck"
authorLusheng Ji <lji@research.att.com>
Mon, 29 Jun 2020 14:35:53 +0000 (14:35 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Mon, 29 Jun 2020 14:35:53 +0000 (14:35 +0000)
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 }}
+      
+      
 ---