From e4ad10886ff6f795089ac55ef9c813fba4ed257f Mon Sep 17 00:00:00 2001 From: zhenyus Date: Wed, 16 Apr 2025 06:15:00 +0800 Subject: [PATCH] fix: update OpenTelemetry configuration to include TLS settings for Loki exporter and remove logging exporter Signed-off-by: zhenyus --- .../templates/authentication/opentelemetry.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/freeleaps/helm-pkg/authentication/templates/authentication/opentelemetry.yaml b/freeleaps/helm-pkg/authentication/templates/authentication/opentelemetry.yaml index e82839c4..e9607e35 100644 --- a/freeleaps/helm-pkg/authentication/templates/authentication/opentelemetry.yaml +++ b/freeleaps/helm-pkg/authentication/templates/authentication/opentelemetry.yaml @@ -56,7 +56,9 @@ spec: exporters: loki: endpoint: {{ .Values.logIngest.lokiEndpoint }} - logging: + tls: + insecure: true + debug: verbosity: detailed service: @@ -67,5 +69,5 @@ spec: logs: receivers: [filelog] processors: [k8sattributes, resource, batch] - exporters: [loki, logging] + exporters: [debug, loki] {{- end }} \ No newline at end of file