Skip to content

bnallapeta/pipeline-service

This branch is 419 commits behind openshift-pipelines/pipeline-service:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Pipeline Service CI RobotRoming22
Pipeline Service CI Robot
and
Apr 17, 2023
05a881b · Apr 17, 2023
Sep 26, 2022
Mar 21, 2023
Apr 17, 2023
Apr 17, 2023
Apr 14, 2023
Apr 14, 2023
Apr 17, 2023
May 2, 2022
Oct 28, 2022
Dec 8, 2022
Oct 26, 2022
Apr 12, 2023
Apr 11, 2022
Nov 10, 2022
Mar 20, 2023

Repository files navigation

Pipeline Service

Pipeline Service provides a SaaS for pipelines. It leverages:

  • Kubernetes / OpenShift for the compute
  • Tekton Pipelines, Results and friends for the core of the service
  • OpenShift GitOps / Argo CD, Pipelines as Code for managing the infrastructure

Tekton and Kubernetes provide a great infrastructure for building pipelines. They come however with some limitations.

  • Multi-tenancy: Kubernetes provides a level of multi-tenancy. However, this does not extend to cluster scoped resources. CustomResourceDefinitions (CRD) are extensively used for extending the Kubernetes API, following the operator pattern. CRDs are cluster scoped. This induces a coupling between the operator version provided by the platform and what you can use as a tenant. The control plane is also shared between tenants.
  • Scalability: Kubernetes has made it easy to distribute the load onto many servers and scalability at cloud scale more approachable. Like everything, its control plane has however its limits.
  • Availability and geo-redundancy: Kubernetes control plane is based on an etcd cluster, which is sensible to latency between its members. This restricts what can be done in terms of geographical distribution.

Work is in progress in order to solve these challenges.
KCP related work was discontinued and can be found in kcp branch

How do I start?

Running in Kubernetes or OpenShift

You can deploy Pipeline Service on your OpenShift cluster with the dev_setup.sh script in developer folder.

More info here.

Running locally

See the development guide for instructions on how to set up a local development environment.

About

Running Tekton on top of KCP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages

  • Shell 92.7%
  • Dockerfile 7.3%