KCNA · Question #12
Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called:
The correct answer is A. namespaces. Kubernetes allows for multiple virtual clusters within a single physical cluster, which are known as namespaces.
Question
Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called:
Options
- Anamespaces
- Bcontainers
- Chypervisors
- Dcgroups
How the community answered
(19 responses)- A89% (17)
- C5% (1)
- D5% (1)
Why each option
Kubernetes allows for multiple virtual clusters within a single physical cluster, which are known as namespaces.
Namespaces in Kubernetes provide a mechanism for isolating groups of resources within a single cluster, serving as virtual clusters for different teams or projects. This allows for resource organization and access control, ensuring that resources in one namespace do not directly conflict with resources in another, without requiring separate physical clusters.
Containers are the isolated environments where applications run, not virtual clusters themselves.
Hypervisors are used in virtualization to create virtual machines, which is a different concept than Kubernetes virtual clusters.
cgroups (control groups) are a Linux kernel feature for resource management and isolation for processes, not Kubernetes virtual clusters.
Concept tested: Kubernetes namespaces for resource isolation
Source: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
Topics
Community Discussion
No community discussion yet for this question.