b9996e6bbe
Also update the Docs and fixup the HTTP API to return proper errors when someone attempts to use Namespaces with an OSS agent. Add Namespace HTTP API docs Make all API endpoints disallow unknown fields
32 lines
660 B
Plaintext
32 lines
660 B
Plaintext
---
|
|
layout: "docs"
|
|
page_title: "Commands: Namespace Delete"
|
|
sidebar_current: "docs-commands-namespace-delete"
|
|
---
|
|
|
|
<%= enterprise_alert :consul %>
|
|
|
|
# Consul Namespace Delete
|
|
|
|
Command: `consul namespace delete`
|
|
|
|
This `namespace delete` command deletes a namespace. This was added in Consul Enterprise 1.7.0. If
|
|
ACLs are enabled then this command will require a token with `operator:write` privileges.
|
|
|
|
## Usage
|
|
|
|
Usage: `consul namespace delete <name>`
|
|
|
|
#### API Options
|
|
|
|
<%= partial "docs/commands/http_api_options_client" %>
|
|
<%= partial "docs/commands/http_api_options_server" %>
|
|
|
|
## Examples
|
|
|
|
Delete a Namespace:
|
|
|
|
```sh
|
|
$ consul namespace delete "team-1"
|
|
```
|