mirror of
https://github.com/status-im/consul.git
synced 2025-01-18 01:32:11 +00:00
654528ca60
* CD-556 rename partition partial that's only used in CLI Update CLI pages for partial rename API: Add partial for partition as body option API: Add partial for partition as query parameter Update API peering and members pages * acl/auth-methods.mdx Update partition partials to be generic * binding-rules.mdx, policies.mdx * roles.mdx, templated-policies.mdx * tokens.mdx, catalog.mdx, config.mdx, intentions.mdx * service.mdx, exported-services.mdx, kv.mdx, namespaces.mdx * Apply suggestions from code review Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> * Add partial to acl/auth-methods.mdx Fix headings indent in a few files. * Update website/content/api-docs/acl/auth-methods.mdx Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> --------- Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com>
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
---
|
|
layout: commands
|
|
page_title: 'Commands: Namespace Delete'
|
|
description: |
|
|
The `consul namespace delete` command deletes a namespace in Consul Enterprise.
|
|
---
|
|
|
|
# Consul Namespace Delete
|
|
|
|
Command: `consul namespace delete`
|
|
|
|
Corresponding HTTP API Endpoint: [\[DELETE\] /v1/namespace/:name](/consul/api-docs/namespaces#delete-a-namespace)
|
|
|
|
<EnterpriseAlert />
|
|
|
|
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.
|
|
|
|
The table below shows this command's [required ACLs](/consul/api-docs/api-structure#authentication). Configuration of
|
|
[blocking queries](/consul/api-docs/features/blocking) and [agent caching](/consul/api-docs/features/caching)
|
|
are not supported from commands, but may be from the corresponding HTTP endpoint.
|
|
|
|
| ACL Required |
|
|
| ---------------- |
|
|
| `operator:write` |
|
|
|
|
## Usage
|
|
|
|
Usage: `consul namespace delete <name>`
|
|
|
|
#### API Options
|
|
|
|
@include 'cli-http-api-partition-options.mdx'
|
|
|
|
@include 'http_api_options_client.mdx'
|
|
|
|
@include 'http_api_options_server.mdx'
|
|
|
|
## Examples
|
|
|
|
Delete a Namespace:
|
|
|
|
```shell-session
|
|
$ consul namespace delete "team-1"
|
|
```
|