2020-08-13 16:09:15 +00:00
---
title: "Run in a non-default namespace"
layout: docs
---
2020-04-02 15:02:28 +00:00
The Velero installation and backups by default are run in the `velero` namespace. However, it is possible to use a different namespace.
2020-08-28 18:06:11 +00:00
### Customize the namespace during install
2020-04-02 15:02:28 +00:00
Use the `--namespace` flag, in conjunction with the other flags in the `velero install` command (as shown in the [the Velero install instructions][0]). This will inform Velero where to install.
2020-08-28 18:06:11 +00:00
### Customize the namespace for operational commands
2020-04-02 15:02:28 +00:00
To have namespace consistency, specify the namespace for all Velero operational commands to be the same as the namespace used to install Velero:
```bash
velero client config set namespace=< NAMESPACE_VALUE >
```
Alternatively, you may use the global `--namespace` flag with any operational command to tell Velero where to run.
[0]: basic-install.md#install-the-cli