Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knative/build
A Kubernetes-native Build resource.
https://github.com/knative/build
build containers kubernetes
Last synced: 2 months ago
JSON representation
A Kubernetes-native Build resource.
- Host: GitHub
- URL: https://github.com/knative/build
- Owner: knative
- License: apache-2.0
- Archived: true
- Created: 2018-02-04T02:44:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-04T19:31:04.000Z (over 5 years ago)
- Last Synced: 2024-06-19T12:38:44.776Z (7 months ago)
- Topics: build, containers, kubernetes
- Language: Go
- Homepage:
- Size: 20.2 MB
- Stars: 575
- Watchers: 48
- Forks: 159
- Open Issues: 69
-
Metadata Files:
- Readme: README-old.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
- awesome - build - A Kubernetes-native Build resource. (Go)
- awesome-cloud-native - build - A Kubernetes-native Build resource. (Application Delivery)
README
# Knative Build
:rotating_light: **NOTE: Knative Build is
[deprecated](https://github.com/knative/build/issues/614) in favor of [Tekton
Pipelines](https://github.com/tektoncd/pipeline). There are no plans to
produce future releases of this component.** :rotating_light:**This version of README.md is provided for historical purposes.**
[![GoDoc](https://godoc.org/github.com/knative/build?status.svg)](https://godoc.org/github.com/knative/build)
[![Go Report Card](https://goreportcard.com/badge/knative/build)](https://goreportcard.com/report/knative/build)This repository contains a work-in-progress build system that is designed to
address a common need for cloud native development.A Knative build extends
[Kubernetes](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)
and utilizes existing Kubernetes primitives to provide you with the ability to
run on-cluster container builds from source. For example, you can write a build
that uses Kubernetes-native resources to obtain your source code from a
repository, build a container image, then run that image.While Knative builds are optimized for building, testing, and deploying source
code, you are still responsible for developing the corresponding components
that:- Retrieve source code from repositories.
- Run multiple sequential jobs against a shared filesystem, for example:
- Install dependencies.
- Run unit and integration tests.
- Build container images.
- Push container images to an image registry, or deploy them to a cluster.The goal of a Knative build is to provide a standard, portable, reusable, and
performance optimized method for defining and running on-cluster container image
builds. By providing the “boring but difficult” task of running builds on
Kubernetes, Knative saves you from having to independently develop and reproduce
these common Kubernetes-based development processes.While today, a Knative build does not provide a complete standalone CI/CD
solution, it does however, provide a lower-level building block that was
purposefully designed to enable integration and utilization in larger systems.## Learn more
To learn more about builds in Knative, see the
[Knative build documentation](https://www.knative.dev/docs/build/).To learn more about Knative in general,
[see the documentation](https://www.knative.dev/docs/).## Developing Knative builds
If you are interested in contributing to Knative builds:
1. Visit the [How to contribute](./CONTRIBUTING.md) page for information about
how to become a Knative contributor.
1. Learn how to [set up your development environment](DEVELOPMENT.md).