Kompose doesn't bring up localhost for openzipkin and Elastic Kompose doesn't bring up localhost for openzipkin and Elastic kubernetes kubernetes

Kompose doesn't bring up localhost for openzipkin and Elastic


It is solved now; all I had to do was port forwarding.

kubectl port-forward zipkin-774cc77659-g929n 9411:9411

Thanks,


By default you service is exposed as ClusterIP, in this case your service will be accessible from within your cluster.

You can use port forwarding "With this connection in place you can use your local workstation to debug your application that is running in the pod" as described in the answer above.

Another approach is to use other "service types" like NodePort.

You can find more information here Publishing services (ServiceTypes)