diff --git a/RECIPE_EXAMPLE/example_recipe_local_images_oran_i_release.yaml b/RECIPE_EXAMPLE/example_recipe_local_images_oran_i_release.yaml index 033a203..d2c49ad 100644 --- a/RECIPE_EXAMPLE/example_recipe_local_images_oran_i_release.yaml +++ b/RECIPE_EXAMPLE/example_recipe_local_images_oran_i_release.yaml @@ -28,6 +28,7 @@ tm: pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "latest" + pipelines: {"timeseries": "qoe_pipeline_h_release"} leofs: image: diff --git a/RECIPE_EXAMPLE/example_recipe_nexus_images_oran_i_release.yaml b/RECIPE_EXAMPLE/example_recipe_nexus_images_oran_i_release.yaml index 9734ab0..fd9962e 100644 --- a/RECIPE_EXAMPLE/example_recipe_nexus_images_oran_i_release.yaml +++ b/RECIPE_EXAMPLE/example_recipe_nexus_images_oran_i_release.yaml @@ -28,6 +28,7 @@ tm: pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "1.1.3" + pipelines: {"timeseries": "qoe_pipeline_h_release"} leofs: image: diff --git a/RECIPE_EXAMPLE/example_recipe_nexus_images_staging_oran_i_release.yaml b/RECIPE_EXAMPLE/example_recipe_nexus_images_staging_oran_i_release.yaml index dd988c0..2021a53 100644 --- a/RECIPE_EXAMPLE/example_recipe_nexus_images_staging_oran_i_release.yaml +++ b/RECIPE_EXAMPLE/example_recipe_nexus_images_staging_oran_i_release.yaml @@ -28,6 +28,7 @@ tm: pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "1.0.0" + pipelines: {"timeseries": "qoe_pipeline_h_release"} leofs: image: diff --git a/helm/tm/templates/configmap.yaml b/helm/tm/templates/configmap.yaml index c98e3db..f6d4477 100644 --- a/helm/tm/templates/configmap.yaml +++ b/helm/tm/templates/configmap.yaml @@ -28,8 +28,11 @@ data: DATA_EXTRACTION_API_PORT: "{{ include "common.serviceport.data-extraction.http" . }}" TRAINING_MANAGER_PORT: "{{ include "common.serviceport.tm.http" . }}" TRAINING_MANAGER_IP: {{ .Values.traininghost.ip_address }} + MODEL_MANAGEMENT_SERVICE_IP: "{{ include "common.servicehost.modelmgmtservice.http" . }}" + MODEL_MANAGEMENT_SERVICE_PORT: "{{ include "common.serviceport.modelmgmtservice.http" . }}" PS_USER: postgres PS_IP: tm-db-postgresql.traininghost PS_PORT: "5432" PYTHONUNBUFFERED: "0" ACCESS_CONTROL_ALLOW_ORIGIN: "http://localhost:32005" + PIPELINE: {{.Values.tm.pipelines | toJson | quote }}