Merge pull request #10519 from jkirschner-hashicorp/fix-doc-service-splitter-example

docs: fix service splitter example weight sum
pull/10525/head
jkirschner-hashicorp 2021-06-29 15:51:18 -04:00 committed by GitHub
commit 89f01647fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ Splits = [
# will default to service with same name as config entry ("web") # will default to service with same name as config entry ("web")
}, },
{ {
Weight = 10 Weight = 50
Service = "web-rewrite" Service = "web-rewrite"
}, },
] ]
@ -120,7 +120,7 @@ spec:
splits: splits:
- weight: 50 - weight: 50
# will default to service with same name as config entry ("web") # will default to service with same name as config entry ("web")
- weight: 10 - weight: 50
service: web-rewrite service: web-rewrite
``` ```