Browse Source

Update intention precedence table in the docs (#7421)

* Update intention precedence table in the docs

Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
pull/7427/head
Matt Keeler 5 years ago committed by GitHub
parent
commit
e62e862df9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      website/source/docs/connect/intentions.html.md

23
website/source/docs/connect/intentions.html.md

@ -91,12 +91,17 @@ specified value or is the wildcard value `*`.
The full precedence table is shown below and is evaluated
top to bottom, with larger numbers being evaluated first.
| Source Name | Destination Name | Precedence |
| ----------- | ---------------- | ---------- |
| Exact | Exact | 9 |
| `*` | Exact | 8 |
| Exact | `*` | 6 |
| `*` | `*` | 5 |
| Source Namespace | Source Name | Destination Namespace | Destination Name | Precedence |
| ---------------- | ----------- | --------------------- | ---------------- | ---------- |
| Exact | Exact | Exact | Exact | 9 |
| Exact | `*` | Exact | Exact | 8 |
| `*` | `*` | Exact | Exact | 7 |
| Exact | Exact | Exact | `*` | 6 |
| Exact | `*` | Exact | `*` | 5 |
| `*` | `*` | Exact | `*` | 4 |
| Exact | Exact | `*` | `*` | 3 |
| Exact | `*` | `*` | `*` | 2 |
| `*` | `*` | `*` | `*` | 1 |
The precedence value can be read from the [API](/api/connect/intentions.html)
after an intention is created.
@ -111,9 +116,9 @@ valid non-wildcard intentions to match.
The numbers in the table above are not stable. Their ordering will remain
fixed but the actual number values may change in the future.
The numbers are non-contiguous because there are
some unused values in the middle in preparation for a future version of
Consul supporting namespaces.
-> **Consul Enterprise** - Namespaces are an Enterprise feature. In Consul OSS any of the rows in
the table with a `*` for either the source namespace or destination namespace are not applicable.
## Intention Management Permissions

Loading…
Cancel
Save