mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-08-03 22:06:07 +00:00
* Reorganize docs for the velero site Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * mirror master docs to v1.2 Signed-off-by: Ashish Amarnath <ashisham@vmware.com>
24 lines
508 B
Markdown
24 lines
508 B
Markdown
# Run in custom namespace
|
|
|
|
You can run Velero in any namespace.
|
|
|
|
First, ensure you've [downloaded & extracted the latest release][0].
|
|
|
|
Then, install Velero using the `--namespace` flag:
|
|
|
|
```bash
|
|
velero install --bucket <YOUR_BUCKET> --provider <YOUR_PROVIDER> --namespace <YOUR_NAMESPACE>
|
|
```
|
|
|
|
|
|
|
|
## Specify the namespace in client commands
|
|
|
|
To specify the namespace for all Velero client commands, run:
|
|
|
|
```bash
|
|
velero client config set namespace=<NAMESPACE_VALUE>
|
|
```
|
|
|
|
[0]: basic-install.md#install-the-cli
|