UNCLASSIFIED - NO CUI

The tempo.enabled value is not being passed down to the monitoring chart

Bug

Description

When the fix for the Tempo to Prometheus authorization policy was merged, we didn't pass the value down to the monitoring chart. This means that the AuthorizationPolicy in the monitoring chart isn't getting created when tempo is enabled.

Here is a small patch to fix the issue:

diff --git a/chart/templates/monitoring/values.yaml b/chart/templates/monitoring/values.yaml
index fb681c8e..8dfcf931 100644
--- a/chart/templates/monitoring/values.yaml
+++ b/chart/templates/monitoring/values.yaml
@@ -165,6 +165,9 @@ kiali:
 loki:
   enabled: {{ .Values.loki.enabled }}
 
+tempo:
+  enabled: {{ .Values.tempo.enabled }}
+
 {{- if or $gitlabRedis $authserviceRedisEnabled $redisDatasource }}
 redis:
   enabled: true

BigBang Version

What version of BigBang were you running? 2.2.0

References