Adding clusterRole for App manager.
[ric-plt/ric-dep.git] / helm / e2mgr / templates / configmap.yaml
index 57ecf4f..0973eba 100644 (file)
@@ -79,13 +79,13 @@ data:
       {{- if hasKey .Values.e2mgr "maxMsgSize" }}
       maxMsgSize: {{ .Values.e2mgr.maxMsgSize }}
       {{- else }}
-      maxMsgSize: 4096
+      maxMsgSize: 65536 
       {{- end }}
 
     routingManager:
       {{- if hasKey .Values.e2mgr "baseUrl" }}
       baseUrl: {{ .Values.e2mgr.baseUrl }}
-      {{- else }}
+      {{- else}}
       baseUrl: "http://service-ricplt-rtmgr-http:3800/ric/v1/handles/"
       {{- end }}
 
@@ -130,4 +130,45 @@ data:
     {{- else }}
     keepAliveDelayMs: 120000
     {{- end }}
+
+    globalRicId:
+      {{- if hasKey .Values.e2mgr "ricId" }}
+      ricId: {{ .Values.e2mgr.ricId }}
+      {{- else }}
+      ricId: "AACCE"
+      {{- end }}
+      {{- if hasKey .Values.e2mgr "mcc" }}
+      mcc: {{ .Values.e2mgr.mcc }}
+      {{- else }}
+      mcc: "310"
+      {{- end }}
+      {{- if hasKey .Values.e2mgr "mnc" }}
+      mnc: {{ .Values.e2mgr.mnc }}
+      {{- else }}
+      mnc: "411"
+      {{- end }}
+      
+    rnibWriter:
+      {{- if hasKey .Values.e2mgr "stateChangeMessageChannel" }}
+      stateChangeMessageChannel: {{ .Values.e2mgr.stateChangeMessageChannel }}
+      {{- else }}
+      stateChangeMessageChannel: "RAN_CONNECTION_STATUS_CHANGE"
+      {{- end }}
+      {{- if hasKey .Values.e2mgr "ranManipulationMessageChannel" }}
+      ranManipulationMessageChannel: {{ .Values.e2mgr.ranManipulationMessageChannel }}
+      {{- else }}
+      ranManipulationMessageChannel: "RAN_MANIPULATION"
+      {{- end }}
+      
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+  name: {{ include "common.configmapname.e2mgr" . }}-loglevel-configmap
+  namespace: {{ include "common.namespace.platform" . }}
+
+data:
+  logcfg: "loglevel: 3"
+   
 ---