uninject

Remove the Linkerd proxy from a Kubernetes config.

You can uninject resources contained in a single file, inside a folder and its sub-folders, or coming from stdin.

Examples

  1. # Uninject all the deployments in the default namespace.
  2. kubectl get deploy -o yaml | linkerd uninject - | kubectl apply -f -
  3. # Download a resource and uninject it through stdin.
  4. curl http://url.to/yml | linkerd uninject - | kubectl apply -f -
  5. # Uninject all the resources inside a folder and its sub-folders.
  6. linkerd uninject <folder> | kubectl apply -f -