...

Source file src/github.com/linkerd/linkerd2/viz/tap/injector/patch.go

Documentation: github.com/linkerd/linkerd2/viz/tap/injector

     1  package injector
     2  
     3  var tpl = `[
     4    {
     5      "op": "add",
     6      "path": "/metadata/annotations/viz.linkerd.io~1tap-enabled",
     7      "value": "true"
     8    },
     9    {
    10      "op": "add",
    11      "path": "/spec/{{.ProxyPath}}/env/-",
    12      "value": {
    13        "name": "LINKERD2_PROXY_TAP_SVC_NAME",
    14        "value": "{{.ProxyTapSvcName}}"
    15      }
    16    }
    17  ]`
    18  

View as plain text