Kubeflow Pipelines on Tekton
Go to file
Tommy Li 0b89419544
chore(owners): Promote rafalbigaj as the approver (#1484)
Signed-off-by: tomcli <tommy.chaoping.li@ibm.com>
2024-04-17 22:13:39 +00:00
.github feat(ci): Update github actions to also test python 3.12 (#1456) 2024-02-13 18:35:05 +00:00
.tekton chore(ci): Add clean up step for tekton ci (#1480) 2024-03-27 17:36:21 +00:00
backend chore(tests): add unit tests for tekton template v1 (#1444) 2024-01-03 23:34:11 +00:00
components Remove unsynced components (#840) 2022-01-31 18:08:32 +00:00
docs KFP 1.7.0 Rebase (#713) 2021-08-30 15:02:25 -07:00
frontend fix(fronted): Fix Tensorboard.tsx endpoint (#1263) 2023-06-26 15:56:15 +00:00
guides fix(README): Update instructions to only use kustomize (#1455) 2024-02-13 00:07:04 +00:00
hack feat(backend): update go version and license files (#949) 2022-05-24 21:13:33 +00:00
images chore(README): update v2 info and new diagrams (#1423) 2023-12-04 21:01:06 +00:00
install chore(release): add kfp-tekton backend 1.9.2 release (#1451) 2024-01-18 00:21:58 +00:00
manifests chore(release): add kfp-tekton backend 1.9.2 release (#1451) 2024-01-18 00:21:58 +00:00
samples chore(samples): Add readme for prompt tuning samples (#1304) 2023-07-27 18:12:51 +00:00
scripts chore(docs): update manual release process and minor ci display name change (#1387) 2023-10-17 21:55:55 +00:00
sdk chore(sdk): Add sdk 1.9.3 release (#1462) 2024-02-27 23:12:59 +00:00
tekton-catalog chore(deps): sync kfp deps with the latest commit (#1485) 2024-04-16 23:32:26 +00:00
tools chore(cleanup): remove old manifests and tools to reduce security checklist (#1371) 2023-10-11 16:48:20 +00:00
.dockerignore KFP 1.7.0 Rebase (#713) 2021-08-30 15:02:25 -07:00
.gitattributes Import KFP backend kubeflow/pipelines (#192) 2020-06-22 21:09:43 -07:00
.gitignore feat(tekton-catalog): Move v2 tekton-exithandler custom task to tekton catalog (#1370) 2023-10-11 16:47:20 +00:00
.kfp-rebase-version Update kfp-tekton release to 1.3.1 (#1033) 2022-08-22 22:07:25 +00:00
.pylintrc KFP 1.3.0 Rebase (#423) 2021-01-19 13:43:59 -08:00
.readthedocs.yml chore(build): Update .readthedocs.yml to build.os format to avoid warning. (#1328) 2023-08-16 18:19:04 +00:00
.style.yapf Kfp 1.8.0 api and frontend rebase (#862) 2022-03-03 00:58:28 +00:00
CONTRIBUTING.md fix(docs): Updated legal info due to migration from CLA to DCO (#1463) 2024-03-05 17:18:07 +00:00
LICENSE Initial commit 2019-10-23 13:33:02 -07:00
Makefile chore(release): add kfp-tekton backend 1.9.2 release (#1451) 2024-01-18 00:21:58 +00:00
OWNERS chore(owners): Promote rafalbigaj as the approver (#1484) 2024-04-17 22:13:39 +00:00
README.md chore(README): Remove deprecated MLX wording (#1447) 2024-01-10 22:50:11 +00:00
SECURITY.md chore(release): Add kfp-tekton 1.9.1 release (#1437) 2023-12-21 21:17:04 +00:00
VERSION chore(release): add kfp-tekton backend 1.9.2 release (#1451) 2024-01-18 00:21:58 +00:00
go.mod chore(backend): update to tekton 0.53.2 (#1420) 2023-11-22 22:39:57 +00:00
go.sum chore(backend): update to tekton 0.53.2 (#1420) 2023-11-22 22:39:57 +00:00

README.md

Kubeflow Pipelines on 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.
  • In KFP-Tekton V2, the SDK compiler will generate the same intermediate representation as in the main Kubeflow pipelines SDK. All the Tekton related implementations are all embedded into the V2 backend API service.

For more details about the project please follow this detailed blog post . For the latest KFP-Tekton V2 implementation and supported offerings, please follow our latest Kubecon Talk and slides. For information on the KFP-Tekton V1 implementation, look at these slides as well as this deep dive presentation for demos.

Architecture

We are currently using Kubeflow Pipelines 1.8.4 and Tekton >= 0.53.2 in the master branch for this project.

For Kubeflow Pipelines 2.0.5 and Tekton >= 0.53.2 integration, please check out the kfp-tekton v2-integration branch and KFP-Tekton V2 deployment instead.

kfp-tekton

Kubeflow Pipelines is a platform for building and deploying portable, scalable machine learning (ML) workflows. More architectural details about the Kubeflow Pipelines can be found on the Kubeflow website.

The Tekton Pipelines project provides Kubernetes-style resources for declaring CI/CD-style pipelines. Tekton introduces several 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 the Tekton repo.

Get Started using Kubeflow Pipelines on 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

References

Kubeflow and TFX Pipelines

Kubeflow and TFX Pipelines talk at Tensorflow World