Kubernetes Engineering Knowledge Check
-
Which Kubernetes control plane component is responsible for assigning a node to a newly created Pod?
- a) kube-apiserver
- b) kube-scheduler
- c) kubelet
- d) etcd
-
What type of Kubernetes Service is most commonly used to expose an application strictly within the cluster?
- a) LoadBalancer
- b) NodePort
- c) ClusterIP
- d) ExternalName
-
Which resource ensures that a specified number of pod replicas are running at any given time?
- a) ConfigMap
- b) DaemonSet
- c) ReplicaSet
- d) Ingress
-
True or False: PersistentVolumeClaims (PVCs) consume Node resources, while PersistentVolumes (PVs) consume Cluster resources.
- a) True
- b) False