How to deploy Jaeger on Kubernetes GKE

4/11/2020

I have added these fields in application.yml of microservices and dependency in pom.xml.Jaeger running on my local is abl to identify the services as well

opentracing.jaeger.udp-sender.host=localhost
opentracing.jaeger.udp-sender.port=6831

I have deployed all my microservices on kubernetes. Please help me in deploying jaeger on kubernetes.

UPDATE: I have reached this step. I have a load balancer IP for jaeger-query. But on which host and port will my microservice send the logs to ??

enter image description here

-- HMT
google-kubernetes-engine
jaeger
kubernetes
spring-boot

3 Answers

4/11/2020

You can use Jaeger Operator to deploy Jaeger on kubernetes.The Jaeger Operator is an implementation of a Kubernetes Operator. Operators are pieces of software that ease the operational complexity of running another piece of software. More technically, Operators are a method of packaging, deploying, and managing a Kubernetes application

-- Arghya Sadhu
Source: StackOverflow

4/11/2020
-- Manik Gupta
Source: StackOverflow

4/11/2020

Follow this link for steps to deploy JAEGER on kubernetes .

https://www.upnxtblog.com/index.php/2018/07/16/kubernetes-tutorial-distributed-tracing-with-jaeger/

make following changes in application.properties

opentracing.jaeger.udp-sender.host=<load_balancer_ip> of your jaeger service
opentracing.jaeger.http-sender.url=http://<jaeger-collector-service-name>:port/api/traces
-- iron_man
Source: StackOverflow