Add mme configuration variables to helm configmap template 16/14816/1
authorTaewan Kim <t25.kim@samsung.com>
Thu, 14 Aug 2025 05:48:44 +0000 (14:48 +0900)
committerTaewan Kim <t25.kim@samsung.com>
Thu, 14 Aug 2025 05:53:32 +0000 (14:53 +0900)
AIMLFW dashboard can access the mme server with the value in the recipe file.

Issue-ID: AIMLFW-226
Change-Id: I0227ec3b0f793fdee7280d8a0ef970efd36322c4
Signed-off-by: Taewan Kim <t25.kim@samsung.com>
RECIPE_EXAMPLE/example_recipe_local_images_oran_latest.yaml
helm/aiml-dashboard/templates/configmap.yaml

index e51a53e..719c244 100644 (file)
@@ -67,6 +67,7 @@ aimldashboard:
     tag: "latest"
   host:
     tm_host: "localhost"
+    mme_host: "localhost"
     notebook_host: "localhost"
     debug: "\"false\""
 
index a9c0ff0..4390614 100644 (file)
@@ -24,6 +24,8 @@ data:
   # Configuration values can be set as key-value properties
   REACT_APP_TM_HOST: {{ .Values.aimldashboard.host.tm_host }}
   REACT_APP_TM_PORT: "{{ include "common.serviceport.aiml-dashboard.react-app-tm-port" .  }}"
+  REACT_APP_MME_HOST: {{ .Values.aimldashboard.host.mme_host }}
+  REACT_APP_MME_PORT: "{{ include "common.serviceport.aiml-dashboard.react-app-modelmgmtservice-port" . }}"
   REACT_APP_NOTEBOOK_HOST: {{ .Values.aimldashboard.host.notebook_host }}
   REACT_APP_NOTEBOOK_PORT:  "{{ include "common.serviceport.aiml-dashboard.react-app-notebook-port" .  }}"
   AIMLDASHBOARD_PORT: "{{ include "common.serviceport.aiml-dashboard.http" .  }}"