Complete the command to install Metrics Server using kubectl.
kubectl apply -f [1]The correct command applies the official Metrics Server components manifest from the GitHub release URL.
Complete the kubectl command to check if Metrics Server pods are running in the kube-system namespace.
kubectl get pods -n [1]Metrics Server runs in the kube-system namespace, so you check pods there.
Fix the error in the Metrics Server deployment by completing the args to allow insecure TLS communication.
- --kubelet-insecure-tls=[1]Setting --kubelet-insecure-tls=true allows Metrics Server to skip TLS verification when connecting to kubelets.
Fill both blanks to complete the command that checks Metrics Server API availability.
kubectl top [1] -n [2]
The command kubectl top nodes -n default checks resource usage of nodes via Metrics Server. The kubectl top nodes command does not require specifying the kube-system namespace because nodes are cluster-wide resources.
Fill all three blanks to create a label selector command to find Metrics Server pods.
kubectl get pods -n [1] -l [2]=[3]
This command lists pods in the kube-system namespace with label k8s-app=metrics-server, which identifies Metrics Server pods.