Skip to content

Commit f88c99f

Browse files
authored
Suggestions (#123)
Signed-off-by: Alan Cha <[email protected]>
1 parent 6889c31 commit f88c99f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/tutorials/integrations/kserve-mm/canary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ cat grpc_input.json \
9696
inference.GRPCInferenceService.ModelInfer \
9797
| grep -e app-version
9898
```
99-
4. Requests can also be sent with the header `traffic: test`. When a candidate is deployed, requests with this header will be routed to the candidate. When no candidate is deployed, all requests will be routed to the same model version.
99+
4. Requests can also be sent with the header `traffic: test`. When a candidate is deployed, requests with this header will be routed to the candidate. When no candidate is deployed, all requests will be routed to the primary version.
100100
```shell
101101
cat grpc_input.json \
102102
| grpcurl -vv -plaintext -proto kserve.proto -d @ \

docs/tutorials/integrations/kserve/canary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ http://wisdom.default -d @input.json -s -D - \
9090
| grep -e HTTP -e app-version
9191
```
9292

93-
4. Requests can also be sent with the header `traffic: test`. When a candidate is deployed, requests with this header will be routed to the candidate. When no candidate is deployed, all requests will be routed to the same model version.
93+
4. Requests can also be sent with the header `traffic: test`. When a candidate is deployed, requests with this header will be routed to the candidate. When no candidate is deployed, all requests will be routed to the primary version.
9494
```shell
9595
curl -H 'Content-Type: application/json' \
9696
-H 'traffic: test' \

docs/tutorials/integrations/kubernetes-gateway-api/blue-green.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ This tutorial uses the Kubernetes Gateway API to allow the use any service mesh
2525

2626
## Deploy initial version
2727

28-
Deploy the initial version of the application ([httpbin](https://httpbin.org/))using the Iter8 `release` chart by identifying the environment into which it should be deployed, a list of the versions to be deployed (only one here), and the rollout strategy to be used. Note that we deploy the application to the namespace `test`.
28+
Deploy the initial version of the application ([httpbin](https://httpbin.org/)) using the Iter8 `release` chart by identifying the environment into which it should be deployed, a list of the versions to be deployed (only one here), and the rollout strategy to be used. Note that we deploy the application to the namespace `test`.
2929

30-
???+ note "About creating a namespace for linkerd deployments"
31-
When creating a namespace, it should be annotated so that all created pods are injected with the linkerd proxy. This can be done, for example, by using the linkerd CLI:
30+
???+ note "About creating a namespace for Linkerd deployments"
31+
When creating a namespace, it should be annotated so that all created pods are injected with the Linkerd proxy. This can be done, for example, by using the Linkerd CLI:
3232
```shell
3333
kubectl create ns test --dry-run=client -o yaml | linkerd inject - | kubectl apply -f -
3434
```

docs/tutorials/integrations/kubernetes-gateway-api/canary.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ This tutorial uses the Kubernetes Gateway API to allow the use any service mesh
2525

2626
## Deploy initial version
2727

28-
Deploy the initial version of the application ([httpbin](https://httpbin.org/))using the Iter8 `release` chart by identifying the environment into which it should be deployed, a list of the versions to be deployed (only one here), and the rollout strategy to be used. Note that we deploy the application to the namespace `test`.
28+
Deploy the initial version of the application ([httpbin](https://httpbin.org/)) using the Iter8 `release` chart by identifying the environment into which it should be deployed, a list of the versions to be deployed (only one here), and the rollout strategy to be used. Note that we deploy the application to the namespace `test`.
2929

30-
???+ note "About creating a namespace for linkerd deployments"
31-
When creating a namespace, it should be annotated so that all created pods are injected with the linkerd proxy. This can be done, for example, by using the linkerd CLI:
30+
???+ note "About creating a namespace for Linkerd deployments"
31+
When creating a namespace, it should be annotated so that all created pods are injected with the Linkerd proxy. This can be done, for example, by using the Linkerd CLI:
3232
```shell
3333
kubectl create ns test --dry-run=client -o yaml | linkerd inject - | kubectl apply -f -
3434
```
@@ -82,7 +82,7 @@ kubectl exec --stdin --tty "$(kubectl get pod --sort-by={metadata.creationTimest
8282
curl httpbin.test -s -D - | grep -e '^HTTP' -e app-version
8383
```
8484

85-
4. Requests can also be sent with the header `traffic: test`. When a candidate is deployed, requests with this header will be routed to the candidate. When no candidate is deployed, all requests will be routed to the same model version.
85+
4. Requests can also be sent with the header `traffic: test`. When a candidate is deployed, requests with this header will be routed to the candidate. When no candidate is deployed, all requests will be routed to the primary version.
8686
```shell
8787
curl httpbin.test -H 'traffic: test' -s -D - | grep -e '^HTTP' -e app-version
8888
```

0 commit comments

Comments
 (0)