correct percent expression (#2837)

correct percent expression
This commit is contained in:
x15zhang 2018-11-05 23:02:14 +08:00 committed by Martin Taillefer
parent 396b38cd18
commit 534cedde9e
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ version to a new version.
A common use case is to migrate traffic gradually from one version of a microservice
to another. In Istio, you accomplish this goal by configuring a sequence of rules
that route a percentage of traffic to one service or another. In this task, you will send
%50 of traffic to `reviews:v1` and %50 to `reviews:v3`. Then, you will
complete the migration by sending %100 of traffic to `reviews:v3`.
50% of traffic to `reviews:v1` and 50% to `reviews:v3`. Then, you will
complete the migration by sending 100% of traffic to `reviews:v3`.
## Before you begin