Skip to content

Instantly share code, notes, and snippets.

@alpeb
Created April 20, 2026 20:37
Show Gist options
  • Select an option

  • Save alpeb/8a60b777d3b462ffcc6e2323faf1013f to your computer and use it in GitHub Desktop.

Select an option

Save alpeb/8a60b777d3b462ffcc6e2323faf1013f to your computer and use it in GitHub Desktop.
Linkerd commands
# install the gateway API CRDs
$ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.1/experimental-install.yaml
# install linkerd CRDs
$ linkerd install --crds | kubectl apply -f -
# install linkerd-cni
$ linkerd install-cni | kubectl apply -f -
# install linkerd-control-plane
$ linkerd install | kubectl apply -f -
# injecting and installing emojivoto
$ linkerd inject https://run.linkerd.io/emojivoto.yml | kubectl apply -f -
# tailing logs of the linkerd-cni Daemonset (only present when installing linkerd in CNI mode)
$ kubectl -n linkerd-cni logs -f linkerd-cni-t7jm5
# tailing logs of the linkerd-init init-container (only present when installing linkerd in non-CNI mode)
$ kubectl -n emojivoto logs web-7d64655496-wckdh linkerd-init
# retrieve logs of Kind's kubernetes control-plane
$ kind export logs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment