From 16e814d68ae2811ab7accec215e927fcfdfb0c3b Mon Sep 17 00:00:00 2001 From: Clive Cox Date: Fri, 9 Aug 2019 17:53:08 +0100 Subject: [PATCH] update serving doc with istio details --- doc/source/workflow/serving.md | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/doc/source/workflow/serving.md b/doc/source/workflow/serving.md index a415c2e0db..8bf731028a 100644 --- a/doc/source/workflow/serving.md +++ b/doc/source/workflow/serving.md @@ -6,16 +6,35 @@ Depending on whether you deployed Seldon Core with Ambassador or the API Gateway ### Ambassador REST -Assuming Ambassador is exposed at `````` and with a Seldon deployment name ``````: +Assuming Ambassador is exposed at `````` and with a Seldon deployment name `````` in namespace ``````:: - * A REST endpoint will be exposed at : ```http:///seldon//api/v0.1/predictions``` + * A REST endpoint will be exposed at : ```http:///seldon///api/v0.1/predictions``` ### Ambassador gRPC Assuming Ambassador is exposed at `````` and with a Seldon deployment name ``````: - * A gRPC endpoint will be exposed at `````` and you should send metadata in your request with key ```seldon``` and value ``````. + * A gRPC endpoint will be exposed at `````` and you should send header metadata in your request with: + * key ```seldon``` and value ``````. + * key ```namespace``` and value ``````. + +## Istio + +### Istio REST + +Assuming the istio gateway is at `````` and with a Seldon deployment name `````` in namespace ``````: + + * A REST endpoint will be exposed at : ```http:///seldon///api/v0.1/predictions``` + + +### Istio gRPC + +Assuming the istio gateway is at `````` and with a Seldon deployment name `````` in namespace ``````: + + * A gRPC endpoint will be exposed at `````` and you should send header metadata in your request with: + * key ```seldon``` and value ``````. + * key ```namespace``` and value ``````. ## API OAuth Gateway