Which is not a service type in Kubernetes?
C
Explanation:
https://kubernetes.io/docs/tutorials/kubernetes-basics/expose/expose-intro/
What standard does kubelet use to communicate with the container runtime?
D
Explanation:
kubelet can communicate with any runtime that supports the CRI standard.
What kind of limitation cgroups allows?
A, B, C, E
What is the most common way to scale the application in the cloud environment?
B
Explanation:
https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
Which of the following is an advantage a cloud-native microservices application has over monolithic
applications?
C
Explanation:
Cloud-native applications tend to be microservice base, they have individual services that can be
independently scaled, updated and rolled back. This makes scaling and update operations simpler
and less risky.
An application that is nearing its usage limit. To increase the amount of users it can handle, you allo-
cate additional memory resources to each instance of the application. What type of scaling is this?
D
Explanation:
Which of the following is not the part of Kubernetes Control Plane?
D
Explanation:
https://kubernetes.io/docs/concepts/overview/components/
Which of the following factors does scheduling take into account when selecting a Node?
C
Explanation:
Scheduling takes resource requirements into account in the form of resource requests.
What is etcd used for in Kubernetes?
D
Explanation:
etcd serves as a distributed object store that backs the Kubernetes API.
What are container runtimes with Kubernetes?
A, C
Explanation:
https://kubernetes.io/docs/setup/production-environment/container-runtimes/
Which Kubernetes resource creates Kubernetes Jobs?
B
Explanation:
https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/
Which of the following are characteristics of Statefulsets?
A
Explanation:
https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/
What can you use to add new resource types to your cluster?
B
Explanation:
https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/
What is horizontal scaling?
D
Explanation:
https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
What kubectl command is used to edit a resource on the server?
C
Explanation:
https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#edit