From 677db76fc6c944d5870facdbf9b9154adece496e Mon Sep 17 00:00:00 2001 From: Ryan Underwood Date: Wed, 15 Jan 2025 14:32:09 -0600 Subject: [PATCH] [jaeger] Support gRPC storage in Jaeger >=1.60.0 The keyword changed, so we have to carry the env vars with us in that case. Signed-off-by: Ryan Underwood --- charts/jaeger/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/jaeger/templates/_helpers.tpl b/charts/jaeger/templates/_helpers.tpl index 74e65f0d..75f567b4 100644 --- a/charts/jaeger/templates/_helpers.tpl +++ b/charts/jaeger/templates/_helpers.tpl @@ -421,7 +421,7 @@ Cassandra, Elasticsearch, or grpc-plugin, badger, memory related environment var {{ include "cassandra.env" . }} {{- else if eq .Values.storage.type "elasticsearch" -}} {{ include "elasticsearch.env" . }} -{{- else if eq .Values.storage.type "grpc-plugin" -}} +{{- else if or (eq .Values.storage.type "grpc-plugin") (eq .Values.storage.type "grpc") -}} {{ include "grpcPlugin.env" . }} {{- else if eq .Values.storage.type "badger" -}} {{ include "badger.env" . }}