Recall & Review
beginner
What is a namespace in Kubernetes?
A namespace in Kubernetes is like a folder that helps organize and separate resources inside a cluster. It keeps things tidy and avoids conflicts.
Click to reveal answer
beginner
Name the three default namespaces in Kubernetes.
The three default namespaces are: default, kube-system, and kube-public.
Click to reveal answer
beginner
What is the purpose of the
default namespace?The
default namespace is where Kubernetes puts your resources if you don't specify any other namespace. It's like the general workspace.Click to reveal answer
intermediate
What kind of resources are stored in the
kube-system namespace?The
kube-system namespace holds system components that run Kubernetes itself, like the scheduler and controller manager. It's for internal cluster tools.Click to reveal answer
intermediate
Why does Kubernetes have a
kube-public namespace?The
kube-public namespace is readable by all users and is used for resources that should be visible to everyone, like cluster info.Click to reveal answer
Which namespace is used by default when none is specified?
✗ Incorrect
If you don't specify a namespace, Kubernetes uses the 'default' namespace automatically.
What type of resources are found in the kube-system namespace?
✗ Incorrect
The kube-system namespace contains Kubernetes system components like the scheduler and controller manager.
Which namespace is readable by all users and used for public cluster information?
✗ Incorrect
The kube-public namespace is readable by all users and holds public cluster information.
If you want to isolate resources for a project, what should you do instead of using default namespaces?
✗ Incorrect
Creating a new namespace helps isolate resources for different projects or teams.
Which namespace should you avoid modifying directly because it contains critical system components?
✗ Incorrect
The kube-system namespace contains critical system components and should not be modified directly.
Explain the roles of the three default namespaces in Kubernetes.
Think about who uses each namespace and what kind of resources they hold.
You got /3 concepts.
Why is it important to use namespaces in Kubernetes?
Consider how namespaces help keep things tidy and secure.
You got /4 concepts.