-
Notifications
You must be signed in to change notification settings - Fork 344
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
Migration to 1.22 missed Zipkin port change #1441
Comments
@rubenvp8510, could you please take a look at this one? |
@jpkrohling @rubenvp8510 Debugged this quickly because i ran into the same problem. |
@gsagula You can fix it (for now) by using the following spec: apiVersion: jaegertracing.io/v1
kind: Jaeger
metadata:
name: tracing
spec:
...
collector:
options:
collector.zipkin.host-port: ':9411'
... (I've only verified this using the |
Thanks @jeremyzahner I did that but with "9411" instead of ":9411". It's working now! |
Would one of you be interested in contributing a fix? Looks like we should have migrated the Zipkin parameter and value. This is where the code needs to be added: jaeger-operator/pkg/upgrade/v1_22_0.go Lines 11 to 40 in 5e9b39e
|
@jpkrohling You can assign this issue to me if nobody else is taking it. |
Thanks for volunteering, @gsagula! |
Sorry guys, I just started looking into this one today but I see that @rubenvp8510 already did it. |
That's ok, we have plenty of other issues if you are interested :-) |
Awesome, I can give this one a shot if nobody else is taking it. #1422 |
Describe the bug
Starting on
jaegertracing/jaeger-operator:1.22.1
, jaeger-collector does not start Zipkin server automatically.{"level":"info","ts":1619421380.7131286,"caller":"server/zipkin.go:48","msg":"Not listening for Zipkin HTTP traffic, port not configured"}
CR
Discussion
jaegertracing/jaeger#2959
To Reproduce
Steps to reproduce the behavior:
jaegertracing/jaeger-operator:1.22.1
withlog-level: debug
You should see the message
"Not listening for Zipkin HTTP traffic, port not configured"
and Jaeger does not take any Zipking trace.Expected behavior
Collector should start Zipkin server automatically.
Version (please complete the following information):
What troubleshooting steps did you try?
The same CR works with the previous version
jaegertracing/jaeger-operator:1.21.3
.cc @jpkrohling
The text was updated successfully, but these errors were encountered: