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