Use new sdc-helm-validator image 18/140618/4
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Fri, 28 Mar 2025 14:31:01 +0000 (15:31 +0100)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Fri, 28 Mar 2025 21:14:08 +0000 (22:14 +0100)
- update sdc-helm-validator image (1.3.1 -> 1.3.2)
- configure tracing

Issue-ID: SDC-4725
Change-Id: I167fe132ac5c293a4ba3c24b24bdc5c812e1622d
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
kubernetes/sdc/components/sdc-helm-validator/templates/deployment.yaml
kubernetes/sdc/components/sdc-helm-validator/values.yaml
kubernetes/sdc/values.yaml

index ef006d8..894bfd6 100644 (file)
@@ -37,6 +37,12 @@ spec:
           env:
             - name: LOG_LEVEL
               value: {{ .Values.config.loggingLevel }}
+            - name: TRACING_ENABLED
+              value: {{ .Values.global.tracing.enabled | quote }}
+            - name: COLLECTOR_URL
+              value: {{ .Values.global.tracing.collector.baseUrl }}
+            - name: TRACING_SAMPLING_PROBABILITY
+              value: {{ .Values.global.tracing.sampling.probability | quote }}
           livenessProbe:
             httpGet:
               path: {{ .Values.liveness.path }}
index 7d3883c..b96e3c1 100644 (file)
 # Global values
 global:
   pullPolicy: Always
+  tracing:
+    enabled: false
+    collector:
+      baseUrl: http://jaeger-collector.istio-config:9411
+    sampling:
+      probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
 
-image: onap/sdc-helm-validator:1.3.1
+image: onap/sdc-helm-validator:1.3.2
 containerPort: &svc_port 8080
 
 config:
index 88cd126..2332418 100644 (file)
@@ -65,6 +65,12 @@ global:
     topics:
       sdcDistNotifTopic: &notif-topic-name SDC-DISTR-NOTIF-TOPIC
       sdcDistStatusTopic: &status-topic-name SDC-DISTR-STATUS-TOPIC
+  tracing:
+    enabled: false
+    collector:
+      baseUrl: http://jaeger-collector.istio-config:9411
+    sampling:
+      probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
 
 # Environment file
 env:
@@ -124,4 +130,3 @@ cassandra:
   socket_read_timeout: 20000
   socket_connect_timeout: 20000
   janusgraph_connection_timeout: 10000
-