From 31af1f0ffee230aaa390fb925ce29b470f758b31 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Fri, 27 Feb 2026 12:04:06 +0100 Subject: [PATCH] [SDC] Fix pipeline lint issue - define global.tracing block in sdc services Issue-ID: OOM-3383 Change-Id: I95495d8db6dffa9f960345280aa7ca4e304674c8 Signed-off-by: Fiete Ostkamp --- kubernetes/sdc/components/sdc-be/values.yaml | 10 ++++++++++ kubernetes/sdc/components/sdc-fe/values.yaml | 10 ++++++++++ kubernetes/sdc/components/sdc-onboarding-be/values.yaml | 10 ++++++++++ 3 files changed, 30 insertions(+) diff --git a/kubernetes/sdc/components/sdc-be/values.yaml b/kubernetes/sdc/components/sdc-be/values.yaml index 611d4472a9..8f4b2213ea 100644 --- a/kubernetes/sdc/components/sdc-be/values.yaml +++ b/kubernetes/sdc/components/sdc-be/values.yaml @@ -19,6 +19,16 @@ # Global configuration defaults. ################################################################# global: + tracing: + enabled: false + collector: + baseUrl: http://jaeger-collector.istio-config + port: + zipkin: 9411 + otlpGrpc: 4317 + grpc: 14250 + sampling: + probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%) nodePortPrefix: 302 sdc_cassandra: #This flag allows SDC to instantiate its own cluster, serviceName diff --git a/kubernetes/sdc/components/sdc-fe/values.yaml b/kubernetes/sdc/components/sdc-fe/values.yaml index fdfe0e8fff..a02ae0e99e 100644 --- a/kubernetes/sdc/components/sdc-fe/values.yaml +++ b/kubernetes/sdc/components/sdc-fe/values.yaml @@ -19,6 +19,16 @@ ################################################################# global: nodePortPrefix: 302 + tracing: + enabled: false + collector: + baseUrl: http://jaeger-collector.istio-config + port: + zipkin: 9411 + otlpGrpc: 4317 + grpc: 14250 + sampling: + probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%) ################################################################# # Application configuration defaults. diff --git a/kubernetes/sdc/components/sdc-onboarding-be/values.yaml b/kubernetes/sdc/components/sdc-onboarding-be/values.yaml index 074de382a8..9ceaf3f411 100644 --- a/kubernetes/sdc/components/sdc-onboarding-be/values.yaml +++ b/kubernetes/sdc/components/sdc-onboarding-be/values.yaml @@ -19,6 +19,16 @@ ################################################################# global: nodePortPrefix: 302 + tracing: + enabled: false + collector: + baseUrl: http://jaeger-collector.istio-config + port: + zipkin: 9411 + otlpGrpc: 4317 + grpc: 14250 + sampling: + probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%) persistence: {} sdc_cassandra: #This flag allows SDC to instantiate its own cluster, serviceName -- 2.16.6