diff --git a/content/en/docs/concepts/overview/working-with-objects/namespaces.md b/content/en/docs/concepts/overview/working-with-objects/namespaces.md index a6accb8696..539ad212ca 100644 --- a/content/en/docs/concepts/overview/working-with-objects/namespaces.md +++ b/content/en/docs/concepts/overview/working-with-objects/namespaces.md @@ -65,13 +65,13 @@ Kubernetes starts with three initial namespaces: ### Setting the namespace for a request -To temporarily set the namespace for a request, use the `--namespace` flag. +To set the namespace for a current request, use the `--namespace` flag. For example: ```shell -kubectl --namespace= run nginx --image=nginx -kubectl --namespace= get pods +kubectl run nginx --image=nginx --namespace= +kubectl get pods --namespace= ``` ### Setting the namespace preference