Login
Remember
Register
Ask a Question
What is the command to create a Kubernetes Namespace?
0
votes
asked
Mar 24, 2024
in
Kubernetes K8s
by
rajeshsharma
What is the command to create a Kubernetes Namespace?
a) kubectl create namespace [name]
b) kubectl create -f namespace.yaml
c) kubectl apply -f namespace.yaml
d) kubectl create ns [name]
kubernetes
namespace
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 24, 2024
by
rajeshsharma
Answer: d)
Explanation: kubectl create ns [name]. This command creates a new Kubernetes Namespace with the specified name.
...