From: idanshal Date: Mon, 6 Jul 2020 13:03:55 +0000 (+0000) Subject: Add rnibWriter section in e2mgr cm X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=06a767f6079e6fa72514bf8bd0758c183b537da9;p=ric-plt%2Fric-dep.git Add rnibWriter section in e2mgr cm Also update example_recipe versions Issue-ID: RIC-431 Change-Id: Ie81cabd8a4016985c7e0bb0a1e20a7809a8267c0 Signed-off-by: idanshal --- diff --git a/RECIPE_EXAMPLE/example_recipe.yaml b/RECIPE_EXAMPLE/example_recipe.yaml index dc17a60..24f2ff4 100644 --- a/RECIPE_EXAMPLE/example_recipe.yaml +++ b/RECIPE_EXAMPLE/example_recipe.yaml @@ -96,21 +96,22 @@ e2mgr: image: registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" name: ric-plt-e2mgr - tag: 5.2.5 + tag: 5.2.15 privilegedmode: false globalRicId: ricId: "AACCE" mcc: "310" mnc: "411" - stateChangeMessageChannel: RAN_CONNECTION_STATUS_CHANGE + rnibWriter: + stateChangeMessageChannel: RAN_CONNECTION_STATUS_CHANGE + ranManipulationMessageChannel: RAN_MANIPULATION e2term: alpha: image: registry: "nexus3.o-ran-sc.org:10002/o-ran-sc" name: ric-plt-e2 - tag: 5.0.7 - + tag: 5.0.8 privilegedmode: false hostnetworkmode: false env: diff --git a/helm/e2mgr/templates/configmap.yaml b/helm/e2mgr/templates/configmap.yaml index cb41e5f..a310608 100644 --- a/helm/e2mgr/templates/configmap.yaml +++ b/helm/e2mgr/templates/configmap.yaml @@ -148,11 +148,16 @@ data: mnc: "411" {{- end }} - {{- if hasKey .Values.e2mgr "stateChangeMessageChannel" }} - stateChangeMessageChannel: {{ .Values.e2mgr.stateChangeMessageChannel }} - {{- else }} - stateChangeMessageChannel: "RAN_CONNECTION_STATUS_CHANGE" - {{- 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 }} ---