4

Jaeger provides an all-in-one configuration for a development setup of Jaeger that doesn't use tons of memory. The instructions show how to easily install this via:

kubectl create -f https://raw.githubusercontent.com/jaegertracing/jaeger-kubernetes/master/all-in-one/jaeger-all-in-one-template.yml

However I manage my development environment using Helm. Is there a Helm chart for this setup that I can use instead?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Cory Klein
  • 51,188
  • 43
  • 183
  • 243

1 Answers1

2

The Jaeger helm chart is now available here.

You need to add the helm repo first using the following:

helm repo add jaegertracing https://jaegertracing.github.io/helm-charts

This can be installed with:

helm install jaegertracing/jaeger
Akash Masand
  • 1,441
  • 14
  • 30