0
0
Kubernetesdevops~10 mins

Linkerd as lightweight alternative in Kubernetes - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to install Linkerd CLI using curl.

Kubernetes
curl -sL https://run.linkerd.io/install | [1]
Drag options to blanks, or click blank then click option'
Abash
Bsh
Cpython
Dzsh
Attempts:
3 left
💡 Hint
Common Mistakes
Using python or zsh instead of sh causes errors.
2fill in blank
medium

Complete the command to check if your Kubernetes cluster is ready for Linkerd installation.

Kubernetes
linkerd [1]
Drag options to blanks, or click blank then click option'
Ainstall
Bversion
Ccheck
Ddashboard
Attempts:
3 left
💡 Hint
Common Mistakes
Using install runs installation, not a readiness check.
3fill in blank
hard

Fix the error in the command to install Linkerd control plane in Kubernetes.

Kubernetes
linkerd install | kubectl [1] -f -
Drag options to blanks, or click blank then click option'
Aget
Bcreate
Cdelete
Dapply
Attempts:
3 left
💡 Hint
Common Mistakes
Using create fails if resources exist.
Using delete removes resources.
4fill in blank
hard

Fill both blanks to inject Linkerd proxy into a deployment manifest.

Kubernetes
kubectl [1] deploy -n my-namespace -o yaml | linkerd [2] - | kubectl apply -f -
Drag options to blanks, or click blank then click option'
Aget
Binject
Cdelete
Ddescribe
Attempts:
3 left
💡 Hint
Common Mistakes
Using apply instead of get to fetch manifest.
Using delete or describe incorrectly.
5fill in blank
hard

Fill all three blanks to check the status of Linkerd pods in the control plane namespace.

Kubernetes
kubectl -n [1] get pods -l [2]=linkerd -o [3]
Drag options to blanks, or click blank then click option'
Alinkerd
Bapp
Cwide
Ddefault
Attempts:
3 left
💡 Hint
Common Mistakes
Using default namespace instead of linkerd.
Using wrong label key or output format.