Kubeflow Pipelines on Tekton
Go to file
Gang Pu 18c9cc8bcc
Change to use component to replace containerOp for any sequencer (#675)
* Change to use component to replace containerOp for any sequencer

* Remove context input and change results path

* 1: Update to use component rather than containerOp
2: Fix lint/license issue
2021-07-28 19:39:19 -07:00
.github Fix: go tests for pipelineLoop controller. (#646) 2021-07-02 09:49:10 -07:00
.tekton [test] Add pipeline-loop flag (#613) 2021-06-08 06:51:46 -07:00
api KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
backend feature(backend): Allow KFP apiserver to create recursion pipelineLoop CRs for the users (#512) 2021-07-21 00:26:50 -07:00
components KFP 1.5.0 Rebase (#555) 2021-04-21 12:06:42 -07:00
contrib KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
docs KFP 1.3.0 Rebase (#423) 2021-01-19 13:43:59 -08:00
frontend Add check for missing pod in cache (#679) 2021-07-26 16:37:11 -07:00
guides Update sdk and release tags to 0.9.0 (#667) 2021-07-21 16:33:25 -07:00
hack KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
images Add Custom Task Docs and Usage (#588) 2021-05-24 13:15:08 -07:00
install Update sdk and release tags to 0.9.0 (#667) 2021-07-21 16:33:25 -07:00
manifests Update sdk and release tags to 0.9.0 (#667) 2021-07-21 16:33:25 -07:00
proxy KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
samples Fix broken link (#681) 2021-07-28 08:51:45 -07:00
scripts fix(scripts): deploy-ibm-vpc.sh public gateway detection. (#622) 2021-06-16 09:12:10 -07:00
sdk Change to use component to replace containerOp for any sequencer (#675) 2021-07-28 19:39:19 -07:00
tekton-catalog Update sdk and release tags to 0.9.0 (#667) 2021-07-21 16:33:25 -07:00
test KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
third_party KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
tools KFP 1.4.0 Rebase (#481) 2021-03-01 10:21:26 -08:00
v2 KFP 1.5.0 Rebase (#555) 2021-04-21 12:06:42 -07:00
.cloudbuild.yaml KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
.dockerignore Import KFP backend kubeflow/pipelines (#192) 2020-06-22 21:09:43 -07:00
.gitattributes Import KFP backend kubeflow/pipelines (#192) 2020-06-22 21:09:43 -07:00
.gitignore KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
.pylintrc KFP 1.3.0 Rebase (#423) 2021-01-19 13:43:59 -08:00
.readthedocs.yml KFP 1.3.0 Rebase (#423) 2021-01-19 13:43:59 -08:00
.release.cloudbuild.yaml KFP 1.5.0-rc.2 Rebase (#513) 2021-04-08 16:49:03 -07:00
.style.yapf KFP 1.3.0 Rebase (#423) 2021-01-19 13:43:59 -08:00
.travis.yml Migrate Travis tests to Github Actions (#619) 2021-06-18 12:00:14 -07:00
CONTRIBUTING.md KFP 1.4.0 Rebase (#481) 2021-03-01 10:21:26 -08:00
LICENSE Initial commit 2019-10-23 13:33:02 -07:00
Makefile Update sdk and release tags to 0.9.0 (#667) 2021-07-21 16:33:25 -07:00
OWNERS Add Prashant(scrapcodes) to reviewers (#655) 2021-07-06 12:34:20 -07:00
README.md add mlx-reference (#649) 2021-06-30 18:00:42 -07:00
VERSION Update sdk and release tags to 0.9.0 (#667) 2021-07-21 16:33:25 -07:00
go.mod Update tekton client and deployment to 0.25.0 (#626) 2021-06-16 20:22:28 -07:00
go.sum Update tekton client and deployment to 0.25.0 (#626) 2021-06-16 20:22:28 -07:00
package-lock.json KFP 1.0 Rebase (#251) 2020-08-03 20:38:18 -07:00
package.json KFP 1.0 Rebase (#251) 2020-08-03 20:38:18 -07:00

README.md

Kubeflow Pipelines with Tekton

Project bringing Kubeflow Pipelines and Tekton together. The project is driven according to this design doc. The current code allows you run Kubeflow Pipelines with Tekton backend end to end.

  • Create your Pipeline using Kubeflow Pipelines DSL, and compile it to Tekton YAML.
  • Upload the compiled Tekton YAML to KFP engine (API and UI), and run end to end with logging and artifacts tracking enabled.

For more details about the project please follow this detailed blog post. Additionally, look at these slides as well as this deep dive presentation for demos.

Note: If you are interested in a sister project built on top of Kubeflow Pipelines with Tekton, please try Machine Learning eXchange (MLX), Data and AI Assets Catalog and Execution Engine. It introduces a 'Component Registry' for Kubeflow Pipelines, amongst other things.

Tekton

The Tekton Pipelines project provides Kubernetes-style resources for declaring CI/CD-style pipelines. Tekton introduces several new Custom Resource Definitions (CRDs) including Task, Pipeline, TaskRun, and PipelineRun. A PipelineRun represents a single running instance of a Pipeline and is responsible for creating a Pod for each of its Tasks and as many containers within each Pod as it has Steps. Please look for more details in Tekton repo.

Kubeflow Pipeline with Tekton Backend

We are currently using Kubeflow Pipelines 1.5.0 and Tekton >= 0.25.0 for this project.

kfp-tekton

Get Started using Kubeflow Pipelines with Tekton

Install Kubeflow Pipelines with Tekton backend

KFP Tekton Pipelines User Guide

Use KFP Tekton SDK

Run Samples

Available KFP DSL Features

Tekton Specific Features

Development Guides

Backend Developer Guide

SDK Developer Guide

Compilation Tests Status Report

Design Guides

Design Doc

KFP, Argo and Tekton Features Comparison

Community

Kubeflow Slack

CD Foundation MLOps Sig.

Instructions to join

References

Kubeflow and TFX Pipelines

Kubeflow and TFX Pipelines talk at Tensorflow World