Questions
- A Kubernetes control plane does not include which of the following components?
- api-server
- kube-scheduler
- etcd
- Ingress controller
Answer: D
- What is the name of the component that keeps all of the cluster information?
- api-server
- Master controller
- kubelet
- etcd
Answer: D
- Which component is responsible for selecting the node that will run a workload?
- kubelet
- api-server
- kube-scheduler
- Pod-scheduler
Answer: B
- Which option would you add to a
kubectl
command to see additional output from a command?Verbose
-v
–verbose
-log
Answer: B
- Which service type creates a randomly generated port, allowing incoming traffic to any worker node on the assigned port to access the service?
LoadBalancer
ClusterIP
- None—it's the default for all services
NodePort
Answer: D
- If you need to deploy an application on a Kubernetes cluster that requires known pod names and a controlled startup of each Pod, which object would you create?
- StatefulSet
- Deployment
- ReplicaSet ...