[DCAE] prh 1.11.0 release 48/143348/4
authorFiete Ostkamp <fiete.ostkamp@telekom.de>
Sun, 22 Feb 2026 16:15:39 +0000 (17:15 +0100)
committerFiete Ostkamp <fiete.ostkamp@telekom.de>
Mon, 23 Feb 2026 07:15:52 +0000 (08:15 +0100)
New image contains:
- java agent based opentelemetry tracing
- updated java 11 base image

Issue-ID: OOM-3382
Change-Id: I1db9cbe1be36ba3a23e233f166fc1ba84fb54c8d
Signed-off-by: Fiete Ostkamp <fiete.ostkamp@telekom.de>
kubernetes/dcaegen2-services/components/dcae-prh/Chart.yaml
kubernetes/dcaegen2-services/components/dcae-prh/values.yaml

index 408c0a9..bd5651e 100644 (file)
@@ -22,7 +22,7 @@ apiVersion: v2
 appVersion: "Oslo"
 description: DCAE PRH
 name: dcae-prh
-version: 13.1.1
+version: 13.2.0
 
 dependencies:
   - name: common
index 0f7ed9b..c5f5fc2 100644 (file)
@@ -24,6 +24,14 @@ global:
   nodePortPrefix: 302
   nodePortPrefixExt: 304
   centralizedLoggingEnabled: true
+  tracing:
+    collector:
+      baseUrl: http://jaeger-collector.istio-config
+      port:
+        otlpGrpc: 4317
+        otlpHttp: 4318
+    sampling:
+      probability: 1.0
 
 #################################################################
 # Filebeat configuration defaults.
@@ -36,7 +44,7 @@ filebeatConfig:
 # Application configuration defaults.
 #################################################################
 # application image
-image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.10.1
+image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.11.0
 pullPolicy: Always
 
 # log directory where logging sidecar should look for log files
@@ -148,6 +156,12 @@ applicationEnv:
   CBS_CLIENT_CONFIG_PATH: '/app-config-input/application_config.yaml'
   AUTH_HDR: '{{ printf "Basic %s" (print .Values.aaiCreds.user ":" .Values.aaiCreds.password | b64enc) }}'
   BOOTSTRAP_SERVERS: '{{ include "common.release" . }}-strimzi-kafka-bootstrap:9092'
+  OTEL_SERVICE_NAME: 'dcae-prh'
+  OTEL_EXPORTER_OTLP_ENDPOINT: '{{ .Values.global.tracing.collector.baseUrl }}:{{ .Values.global.tracing.collector.port.otlpHttp }}'
+  OTEL_EXPORTER_OTLP_PROTOCOL: 'http/protobuf'
+  OTEL_TRACES_EXPORTER: 'otlp'
+  OTEL_METRICS_EXPORTER: 'none'
+  OTEL_LOGS_EXPORTER: 'none'
   JAAS_CONFIG:
     externalSecret: true
     externalSecretUid: '{{ include "common.name" . }}-ku'