linkerd
10 commands
10 shown
Install Linkerd CLI
Download and install the Linkerd CLI
curl --proto =https --tlsv1.2 -sSfL https://run.linkerd.io/install | sh
Pre-install check
Validate cluster meets requirements before installing Linkerd
linkerd check --pre
Install Linkerd CRDs
Install Linkerd CRDs into the cluster
linkerd install --crds | kubectl apply -f -
Install Linkerd control plane
Install Linkerd control plane components
linkerd install | kubectl apply -f -
Post-install check
Validate Linkerd installation is healthy
linkerd check
Inject sidecar into deployment
Inject Linkerd proxy sidecar into existing deployment
kubectl get deploy my-app -o yaml | linkerd inject - | kubectl apply -f -
Live traffic stats
Show real-time golden metrics for all deployments
linkerd viz stat deploy
Top live requests
Show a top-like view of live requests to a deployment
linkerd viz top deploy/my-app
Open Linkerd dashboard
Open the Linkerd web dashboard in the browser
linkerd viz dashboard
Tap live traffic
Watch live HTTP request/response stream for a deployment
linkerd viz tap deploy/my-app
no commands match