diff --git a/chart/templates/tempo/values.yaml b/chart/templates/tempo/values.yaml index 8581bbf65330086090a0b8981df4bd8b8fc2b4d0..d4c31baf1bb08f76a9cb127f04a16fd213b1965c 100644 --- a/chart/templates/tempo/values.yaml +++ b/chart/templates/tempo/values.yaml @@ -93,11 +93,17 @@ serviceMonitor: sso: enabled: {{ .Values.tempo.sso.enabled }} -{{- if .Values.tempo.sso.enabled }} +{{- if or .Values.kiali.enabled .Values.tempo.sso.enabled }} {{- $tempoAuthserviceKey := (dig "selector" "key" "protect" .Values.addons.authservice.values) }} {{- $tempoAuthserviceValue := (dig "selector" "value" "keycloak" .Values.addons.authservice.values) }} podLabels: + {{- if .Values.kiali.enabled }} + {{- include "kialiAppLabel" . | nindent 2 }} + {{- include "kialiVersionLabel" . | nindent 2 }} + {{- end }} + {{- if .Values.tempo.sso.enabled }} {{ $tempoAuthserviceKey }}: {{ $tempoAuthserviceValue }} + {{- end }} {{- end }} {{- end -}}