Skip to content

Instantly share code, notes, and snippets.

@sameo
Last active December 3, 2018 16:09
Show Gist options
  • Save sameo/0d6da9f5ed4953ab075d49b00d96b088 to your computer and use it in GitHub Desktop.
Save sameo/0d6da9f5ed4953ab075d49b00d96b088 to your computer and use it in GitHub Desktop.

Enable Kata open tracing support

$ grep enable_tracing /usr/share/defaults/kata-containers/configuration.toml
enable_tracing = true

Start the all-in-one Jaeger Docker container

docker run -d --name jaeger \
  -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
  -p 5775:5775/udp \
  -p 6831:6831/udp \
  -p 6832:6832/udp \
  -p 5778:5778 \
  -p 16686:16686 \
  -p 14268:14268 \
  -p 9411:9411 \
  jaegertracing/all-in-one:1.8

Start a Kata Container

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment