DCA Exam QuestionsBrowse all questions from this exam

DCA Exam - Question 32


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.

Show Answer
Correct Answer:

Discussion

2 comments
Sign in to comment
ProfessorJayy
Oct 17, 2024

given answer is correct. You'd use namespaces to logically separate and group resources for each application, ensuring that the application's secrets, config maps, and other resources are isolated from others.

__rajan__Option: B
Jan 8, 2025

The correct approach would be to use Kubernetes Namespaces because: Namespaces provide logical isolation between different applications They allow you to: Group related resources (pods, secrets, configmaps, etc.) together Apply resource quotas per application/team Set up role-based access control (RBAC) specific to each team Avoid naming conflicts between different applications