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

move bookinfo version earlier & change tcp/tlsroute to alpha #15048

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion content/en/docs/ambient/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Make sure the default namespace does not include the label `istio-injection=enab

{{< text bash >}}
$ kubectl apply -f @samples/bookinfo/platform/kube/bookinfo.yaml@
$ kubectl apply -f @samples/bookinfo/platform/kube/bookinfo-versions.yaml@
{{< /text >}}

{{< text bash >}}
Expand Down Expand Up @@ -312,7 +313,6 @@ identities, but not at the Layer 7 level, such as HTTP methods like `GET` and `P
1. You can use the same waypoint to control traffic to `reviews`. Configure traffic routing to send 90% of requests to `reviews` v1 and 10% to `reviews` v2:

{{< text bash >}}
$ kubectl apply -f @samples/bookinfo/platform/kube/bookinfo-versions.yaml@
$ kubectl apply -f @samples/bookinfo/gateway-api/route-reviews-90-10.yaml@
{{< /text >}}

Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/ambient/getting-started/snips.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ ENDSNIP

snip_deploy_the_sample_application_1() {
kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
kubectl apply -f samples/bookinfo/platform/kube/bookinfo-versions.yaml
}

snip_deploy_the_sample_application_2() {
Expand Down Expand Up @@ -244,7 +245,6 @@ kubectl exec deploy/sleep -- curl -s http://productpage:9080/ | grep -o "<title>
ENDSNIP

snip_control_traffic_1() {
kubectl apply -f samples/bookinfo/platform/kube/bookinfo-versions.yaml
kubectl apply -f samples/bookinfo/gateway-api/route-reviews-90-10.yaml
}

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/ambient/usage/waypoint/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ The following L7 policies are supported for waypoint proxy:
| Name | Feature Status | Policy Attachment |
| --- | --- | --- |
| `HTTPRoute` | Beta | `parentRefs` |
| `TCPRoute` | Beta | `parentRefs` |
| `TLSRoute` | Beta | `parentRefs` |
| `TCPRoute` | Alpha | `parentRefs` |
| `TLSRoute` | Alpha | `parentRefs` |
| `AuthorizationPolicy` | Beta | `targetRefs` |
| `RequestAuthentication` | Beta | `targetRefs` |
| `Telemetry` | Alpha | `targetRefs` |
Expand Down