Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Originally the
zipkin
service was added to the jaeger-kubernetes template to provide a drop-in replacement for the zipkin deployment that was included as an addon within the Istio installation instructions.Over time, the template was moved into the Istio helm chart, and a specific zipkin service was created to provide a "zipkin compatible" endpoint for any user selected tracing backend to support. However it was not removed from the upstream jaeger-kubernetes templates, which were no longer being used as part of the Istio installation.
The jaeger-collector provides access to the zipkin port, so I don't believe the jaeger templates/operator need to provide a separate service any more.
The main purpose of this change is that I am investigating the potential for using the jaeger-operator as part of the Istio helm installation - and it is now resulting in two "zipkin" related services being created. One representing the
zipkin
service that is used as the endpoint for all Istio components to report zipkin compatible tracing data to, and the other created by the operator e.g.<jaeger-instance-name>-zipkin
.As the jaeger-operator is still in early development, now would be a good time to clean up these issues. If users still require access to the zipkin service, separate from the jaeger-collector service, then it could always be added back in as an option.
Signed-off-by: Gary Brown [email protected]