AssessmentsKubernetes Engineering Knowledge Check

Kubernetes Engineering Knowledge Check

  1. 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
  2. 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
  3. Which resource ensures that a specified number of pod replicas are running at any given time?

    • a) ConfigMap
    • b) DaemonSet
    • c) ReplicaSet
    • d) Ingress
  4. True or False: PersistentVolumeClaims (PVCs) consume Node resources, while PersistentVolumes (PVs) consume Cluster resources.

    • a) True
    • b) False