Pipeline to pipeline examples

This examples illustrates a series of Pipelines that are joined together.

Before you begin

  1. Ensure that you have installed Seldon Core 2 in the namespace seldon-mesh.

  2. Ensure that you are performing these steps in the directory where you have downloaded the samples.

  3. Get the IP address of the Seldon Core 2 instance running with Istio:

ISTIO_INGRESS=$(kubectl get svc seldon-mesh -n seldon-mesh -o jsonpath='{.status.loadBalancer.ingress[0].ip}')

echo "Seldon Core 2: http://$ISTIO_INGRESS"

Make a note of the IP address that is displayed in the output. Replace <INGRESS_IP> with your service mesh's ingress IP address in the following commands.

Models Used

  • gs://seldon-models/triton/simple an example Triton tensorflow model that takes 2 inputs INPUT0 and INPUT1 and adds them to produce OUTPUT0 and also subtracts INPUT1 from INPUT0 to produce OUTPUT1. See here for the original source code and license.

  • Other models can be found at https://github.com/SeldonIO/triton-python-examples

Pipeline pulling from one other Pipeline

Pipeline pulling from two other Pipelines

pipeline-to-pipeline

Pipeline pullin from one pipeline with a trigger to another

pipeline-to-pipeline

Pipeline pulling from one other Pipeline Step

pipeline-to-pipeline

Pipeline pulling from two other Pipeline steps from same model

pipeline-to-pipeline

Last updated

Was this helpful?