From 608410629fbd9ab2936d3d5958f4bcb518b112f1 Mon Sep 17 00:00:00 2001 From: MichaelClifford Date: Tue, 20 Jul 2021 15:15:24 -0400 Subject: [PATCH] add run-ai-pipeline.md --- docs/source/run-ai-pipeline.md | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 docs/source/run-ai-pipeline.md diff --git a/docs/source/run-ai-pipeline.md b/docs/source/run-ai-pipeline.md new file mode 100644 index 0000000..817a86f --- /dev/null +++ b/docs/source/run-ai-pipeline.md @@ -0,0 +1,43 @@ +# How to Run an AI Pipeline with Elyra + +## From the Elyra UI: + +Before starting the pipeline you need to select which runtime environment to use and add a name for your pipeline. + +
+Elyra AI Pipeline run inputs +
+ +Click the play button to run the AI Pipeline. + +
+Elyra AI Pipeline play +
+ +One your pipeline is running, move to the [Kubeflow Pipeline UI](http://istio-ingressgateway-istio-system.apps.zero.massopen.cloud/pipeline/#/experiments) to see what's happening. + +
+Kubeflow Pipeline UI +
+ +From here, you can check the status of each step in the pipeline directly from the UI and debug from the logs should any problems occur: + +
+Successfull Kubeflow Pipeline +
+ +Now that the pipeline has run successfully, the model can be found in your bucket, you can check from the terminal using the [aws CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html): + +```bash + aws s3 --profile moc-pipeline-kfp --endpoint https://s3-openshift-storage.apps.zero.massopen.cloud/ ls s3://{your_bucket}/{your_project_name}/models/ +``` + +where `moc-pipeline-kfp` is the aws profile containing `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` to access your bucket. + +*For more examples on how to create an AI pipeline in Elyra, you can use this [link](https://github.com/elyra-ai/examples/tree/master/pipelines/hello_world_kubeflow_pipelines).* + +## References + +* [Elyra][1] + +[1]: https://github.com/elyra-ai/elyra