Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(MeshRetry): add info about targetRef MeshGateway #1408

Merged
merged 1 commit into from
Jul 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 32 additions & 6 deletions app/_src/policies/meshretry.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,38 @@

## TargetRef support matrix

| TargetRef type | top level | to | from |
| ----------------- | --------- | --- | ---- |
| Mesh | ✅ | ✅ | ❌ |
| MeshSubset | ✅ | ❌ | ❌ |
| MeshService | ✅ | ✅ | ❌ |
| MeshServiceSubset | ✅ | ❌ | ❌ |
{% if_version gte:2.4.x %}
{% tabs targetRef useUrlFragment=false %}

Check failure on line 15 in app/_src/policies/meshretry.md

View workflow job for this annotation

GitHub Actions / Lint docs

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'targetRef'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'targetRef'?", "location": {"path": "app/_src/policies/meshretry.md", "range": {"start": {"line": 15, "column": 9}}}, "severity": "ERROR"}
slonka marked this conversation as resolved.
Show resolved Hide resolved
{% tab targetRef Sidecar %}

Check failure on line 16 in app/_src/policies/meshretry.md

View workflow job for this annotation

GitHub Actions / Lint docs

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'targetRef'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'targetRef'?", "location": {"path": "app/_src/policies/meshretry.md", "range": {"start": {"line": 16, "column": 8}}}, "severity": "ERROR"}
| `targetRef.kind` | top level | to | from |
| ------------------- | --------- | --- | ---- |
| `Mesh` | ✅ | ✅ | ❌ |
| `MeshSubset` | ✅ | ❌ | ❌ |
| `MeshService` | ✅ | ✅ | ❌ |
| `MeshServiceSubset` | ✅ | ❌ | ❌ |
{% endtab %}

{% tab targetRef Builtin Gateway %}

Check failure on line 25 in app/_src/policies/meshretry.md

View workflow job for this annotation

GitHub Actions / Lint docs

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'targetRef'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'targetRef'?", "location": {"path": "app/_src/policies/meshretry.md", "range": {"start": {"line": 25, "column": 8}}}, "severity": "ERROR"}
| `targetRef.kind` | top level | to |
| ------------------- | --------- | --- |
| `Mesh` | ✅ | ✅ |
| `MeshGateway` | ✅ | ❌ |
| `MeshService` | ✅ | ❌ |
| `MeshServiceSubset` | ✅ | ❌ |
{% endtab %}
{% endtabs %}

{% endif_version %}
{% if_version lte:2.3.x %}

| `targetRef.kind` | top level | to | from |
| ------------------- | --------- | --- | ---- |
| `Mesh` | ✅ | ✅ | ❌ |
| `MeshSubset` | ✅ | ❌ | ❌ |
| `MeshService` | ✅ | ✅ | ❌ |
| `MeshServiceSubset` | ✅ | ❌ | ❌ |

{% endif_version %}

To learn more about the information in this table, see the [matching docs](/docs/{{ page.version }}/policies/targetref).

Expand Down
Loading