@@ -1208,9 +1208,10 @@ traces:
1208
1208
receiverConfig : {}
1209
1209
grpc :
1210
1210
# -- Enable Tempo to ingest Open Telemetry GRPC traces
1211
- enabled : false
1211
+ enabled : true
1212
1212
# -- GRPC receiver advanced config
1213
1213
receiverConfig : {}
1214
+ # -- Default OTLP gRPC port
1214
1215
port : 4317
1215
1216
opencensus :
1216
1217
# -- Enable Tempo to ingest Open Census traces
@@ -1915,7 +1916,7 @@ minio:
1915
1916
# Configuration for the gateway
1916
1917
gateway :
1917
1918
# -- Specifies whether the gateway should be enabled
1918
- enabled : false
1919
+ enabled : true
1919
1920
# -- Number of replicas for the gateway
1920
1921
replicas : 1
1921
1922
# -- hostAliases to add
@@ -2027,7 +2028,7 @@ gateway:
2027
2028
# Gateway ingress configuration
2028
2029
ingress :
2029
2030
# -- Specifies whether an ingress for the gateway should be created
2030
- enabled : false
2031
+ enabled : true
2031
2032
# -- Labels for the gateway ingress
2032
2033
labels : {}
2033
2034
# -- Ingress Class Name. MAY be required for Kubernetes versions >= 1.18
@@ -2195,7 +2196,7 @@ gateway:
2195
2196
{{- end }}
2196
2197
}
2197
2198
2198
- {{- if .Values.traces.oltp .grpc.enabled }}
2199
+ {{- if .Values.traces.otlp .grpc.enabled }}
2199
2200
# OTLP gRPC
2200
2201
server {
2201
2202
listen {{ .Values.traces.otlp.grpc.port }} http2;
@@ -2206,11 +2207,11 @@ gateway:
2206
2207
{{- end }}
2207
2208
2208
2209
location = /opentelemetry.proto.collector.trace.v1.TraceService/Export {
2209
- grpc_pass grpc://{{ include "tempo.resourceName" (dict "ctx" . "component" "distributor") }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}:4317 ;
2210
+ grpc_pass grpc://{{ include "tempo.resourceName" (dict "ctx" . "component" "distributor") }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}:{{ .Values.traces.otlp.grpc.port }} ;
2210
2211
}
2211
2212
2212
2213
location ~ /opentelemetry {
2213
- grpc_pass grpc://{{ include "tempo.resourceName" (dict "ctx" . "component" "distributor") }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}:4317 ;
2214
+ grpc_pass grpc://{{ include "tempo.resourceName" (dict "ctx" . "component" "distributor") }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}:{{ .Values.traces.otlp.grpc.port }} ;
2214
2215
}
2215
2216
2216
2217
{{- with .Values.gateway.nginxConfig.serverSnippet }}
0 commit comments