Docker Certified Associate (DCA) — Question 33
Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.
Is this a way to accomplish this?
Create one pod and add all the resources needed for each application.
Answer options
- A. Yes
- B. No
Correct answer: B
Explanation
Creating a single pod for all resources does not align with best practices in Kubernetes, as it can lead to resource contention and complicate management. Instead, each application should have its own namespace or set of resources to ensure proper isolation and organization.