Fix minor tag bug (#5002)

This commit is contained in:
Ashleigh Brennan 2022-06-06 09:11:54 -05:00 committed by GitHub
parent c14e5b686e
commit 07b4298b61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ kn service update example-service --traffic green=80 --traffic blue=20
It is also possible to add tags to Revisions and then split traffic according to the tags you have set:
```bash
kn service update example --tag green=revision-0001 --tag blue=@latest
kn service update example --tag revision-0001=green --tag @latest=blue
```
The `@latest` tag means that `blue` resolves to the latest Revision of the Service. The following example sends 80% of traffic to the latest Revision and 20% to a Revision named `v1`.