- Which of these features is not included in Kubernetes by default?
a) An internal key-value store.
b) Network communication between containers distributed on different Docker hosts.
c) Controllers for deploying workload updates without service interruptions.
d) None of these features are included.
- Which of these statements is true about pods?
a) Pods always run in pairs to provide an application with high availability.
b) Pods are the minimum unit of deployment on Kubernetes.
c) We can deploy more than one container per pod.
d) We need to choose which containers in a pod should be replicated when pods are scaled.
- Which of these statements is true about pods?
a) All pod containers run using a unique network namespace.
b) All containers within a pod can share volumes.
c) All pods running on Docker Engine are accessible from the host using their IP addresses.
d) All of these statements are true.
- Kubernetes provides different controllers to deploy application workloads. Which...