-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gateway: make tempo-query forwarding on gateway optional #705
Conversation
1aaeba2
to
b13b0ee
Compare
@@ -410,6 +518,11 @@ func TestTLSParameters(t *testing.T) { | |||
}, | |||
}, | |||
Template: v1alpha1.TempoTemplateSpec{ | |||
QueryFrontend: v1alpha1.TempoQueryFrontendSpec{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To not break the test. Previously the trace.read.endpoint
was configured even when tempo-query was disabled.
The alternative would be to remove:
assert.Contains(t, args, fmt.Sprintf("--traces.read.endpoint=https://%s:16686",
naming.ServiceFqdn(tempo.Namespace, tempo.Name, manifestutils.QueryFrontendComponentName)))
35b13ac
to
625b194
Compare
625b194
to
5d60c07
Compare
Signed-off-by: Benedikt Bongartz <[email protected]>
Signed-off-by: Benedikt Bongartz <[email protected]>
Signed-off-by: Benedikt Bongartz <[email protected]>
5d60c07
to
1708c1b
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #705 +/- ##
=========================================
+ Coverage 0 77.66% +77.66%
=========================================
Files 0 68 +68
Lines 0 5157 +5157
=========================================
+ Hits 0 4005 +4005
- Misses 0 954 +954
- Partials 0 198 +198
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Benedikt Bongartz <[email protected]>
Signed-off-by: Benedikt Bongartz <[email protected]>
Closes #628