Complete the command to install Linkerd CLI using curl.
curl -sL https://run.linkerd.io/install | [1]The Linkerd CLI installation script is run using sh after downloading with curl.
Complete the command to check if your Kubernetes cluster is ready for Linkerd installation.
linkerd [1]install runs installation, not a readiness check.The linkerd check command verifies if the cluster meets requirements for Linkerd.
Fix the error in the command to install Linkerd control plane in Kubernetes.
linkerd install | kubectl [1] -f -create fails if resources exist.delete removes resources.The correct command to apply the Linkerd control plane manifest is kubectl apply -f -.
Fill both blanks to inject Linkerd proxy into a deployment manifest.
kubectl [1] deploy -n my-namespace -o yaml | linkerd [2] - | kubectl apply -f -
apply instead of get to fetch manifest.delete or describe incorrectly.First, get the deployment manifest, then inject Linkerd proxy using linkerd inject.
Fill all three blanks to check the status of Linkerd pods in the control plane namespace.
kubectl -n [1] get pods -l [2]=linkerd -o [3]
default namespace instead of linkerd.The Linkerd control plane runs in the linkerd namespace. Pods are labeled with app=linkerd. The -o wide option shows detailed pod info.