doc(peering): missing network requirement for peering and the partiti… (#14677)
* doc(peering): missing network requirement for peering and the partition parameter in the list API * Delete API: move partition from path parameter to query parameter
This commit is contained in:
parent
a3fc665eef
commit
5b2d557db1
|
@ -221,8 +221,11 @@ The table below shows this endpoint's support for
|
|||
### Path Parameters
|
||||
|
||||
- `name` `(string: <required>)` - Specifies the name of the peering to delete.
|
||||
- `partition` `(string: "")` <EnterpriseAlert inline /> - Specifies the partition of the peering
|
||||
to delete. Uses `default` when not specified.
|
||||
|
||||
### Query Parameters
|
||||
|
||||
- `partition` `(string: "")` <EnterpriseAlert inline /> - Specifies the partition of the peerings
|
||||
to delete. If not specified will default to `default`.
|
||||
|
||||
### Sample Request
|
||||
|
||||
|
@ -270,6 +273,11 @@ The table below shows this endpoint's support for
|
|||
| ---------------- | ----------------- | ------------- | -------------- |
|
||||
| `NO` | `consistent` | `none` | `peering:read` |
|
||||
|
||||
### Query Parameters
|
||||
|
||||
- `partition` `(string: "")` <EnterpriseAlert inline /> - Specifies the partition of the peerings
|
||||
to list. If not specified will default to `default`.
|
||||
|
||||
### Sample Request
|
||||
|
||||
```shell-session
|
||||
|
|
|
@ -13,7 +13,7 @@ A peering token enables cluster peering between different datacenters. Once you
|
|||
|
||||
## Create a peering connection
|
||||
|
||||
Cluster peering is not enabled by default on Consul servers. To peer clusters, you must first configure all Consul servers so that `peering` is `enabled`. For additional information, refer to [Configuration Files](/docs/agent/config/config-files).
|
||||
Cluster peering is not enabled by default on Consul servers. To peer clusters, you must first configure all Consul servers so that `peering` is `enabled` and the gRPC port(8502) accepts traffic from the peering cluster (e.g., `client_addr="0.0.0.0"`). For additional information, refer to [Configuration Files](/docs/agent/config/config-files).
|
||||
|
||||
After enabling peering for all Consul servers, complete the following steps in order:
|
||||
|
||||
|
|
Loading…
Reference in New Issue