Skip to content

a mutating admission controller which enables experimental tracing of kubernetes object lifecycle

License

Notifications You must be signed in to change notification settings

Monkeyanator/mutating-trace-admission-controller

 
 

Repository files navigation

Mutating trace admission controller

Mutating admission controller that injects base64 encoded OpenCensus span context into the trace.kubernetes.io/context object annotation.

Purpose

The trace context injected with this mutating controller can be used by Kubernetes components to export traces associated with object lifecycles. For more information on this effort, please refer to the official KEP.

Quick start

The structure of this mutating admission controller was informed by the mutating admission webhook found here. The basic idea is as follows:

  1. Create an HTTPS-enabled server that takes Pod json from the API server, inserts encoded span context as an annotation, and returns it
  2. Run a deployment with this webhook server, and expose it as a service
  3. Create a MutatingWebhookConfiguration which instructs the API server to send Pod objects to the aforementioned service upon creation

The included Makefile makes these steps straightforward and the available commands are as follows:

  • make docker: build local Docker image
  • make cluster-up: apply certificate configuration and deployment configuration to cluster for the mutating webhook
  • make cluster-down: delete resources associated with the mutating webhook from the active cluster

There are example patches which can be used with kustomize to configure the deployment of this webhook into your cluster under deploy/base/overlays/example. This example custom configuration can be applied with:

kustomize build deploy/overlays/example | kubectl apply -f -

This can be used, for example, to set different sampling policies between production and staging clusters.

About

a mutating admission controller which enables experimental tracing of kubernetes object lifecycle

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 69.1%
  • Shell 22.6%
  • Makefile 5.9%
  • Dockerfile 2.4%