https://github.com/openshift/release
Release tooling for OpenShift
https://github.com/openshift/release
Last synced: 8 months ago
JSON representation
Release tooling for OpenShift
- Host: GitHub
- URL: https://github.com/openshift/release
- Owner: openshift
- License: apache-2.0
- Created: 2016-11-30T20:25:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-05-14T21:18:05.000Z (8 months ago)
- Last Synced: 2025-05-14T21:46:31.916Z (8 months ago)
- Language: Shell
- Homepage: https://try.openshift.com
- Size: 579 MB
- Stars: 295
- Watchers: 28
- Forks: 1,886
- Open Issues: 472
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenShift Release Tooling
This repository holds OpenShift cluster manifests, component build manifests and
CI workflow configuration for OpenShift component repositories for both OKD and
OCP.
## CI Workflow Configuration
To setup a CI workflow for a new repository, use `make new-repo`. See the
[Contributing CI Configuration to the openshift/release Repository](https://docs.ci.openshift.org/docs/how-tos/contributing-openshift-release/)
document for detailed information about how to contribute to this repository.
Configuration files for CI workflows live under [`ci-operator/`](./ci-operator/)
and are split into the following categories:
- [`ci-operator/config`](./ci-operator/config/) contains configuration for the
`ci-operator`, detailing builds and tests for component repositories.
- [`ci-operator/jobs`](./ci-operator/jobs/) contains configuration for `prow`,
detailing job triggers. In almost all cases, this configuration is
generated automatically from the `ci-operator` config. For manual edits, see
[this section](https://docs.ci.openshift.org/docs/how-tos/contributing-openshift-release/#component-ci-configuration)
of the contribution document and the [upstream configuration document](https://github.com/kubernetes/test-infra/blob/master/prow/README.md#how-to-add-new-jobs). Prefer the `ci-operator` config whenever possible.
- [`ci-operator/step-registry`](./ci-operator/step-registry/) contains the
registry of reusable test steps and workflows. See the documentation for
this content [here](https://docs.ci.openshift.org/docs/architecture/step-registry/).
- **[LEGACY]** [`ci-operator/templates`](./ci-operator/templates/) contains black-box test
workflows for use by the `ci-operator`. The parent directory's
[README](./ci-operator#end-to-end-tests) documents how to use them. See the
[template document](https://github.com/openshift/ci-tools/blob/2c9c111a2350ef92a366e6d86e66b82d13d7e704/TEMPLATES.md)
for general information on template tests. Templates are legacy and new
ones should not be added. Multi-stage tests using steps from the shared
registry should be used instead.
## Cluster and Service Configuration Manifests
### Core Services and Configuration
_Only `core-services/secrets` folder is applied to the cluster api.ci._
Except [user secret management](https://docs.ci.openshift.org/docs/how-tos/adding-a-new-secret-to-ci/), no services are running on `api.ci`.
### Additional Services and Configuration (legacy)
_This folder is no longer applied to the cluster api.ci which is going to be offline soon._
### Cluster Configuration Manifests (legacy)
Manifests for cluster provisioning and installation live under [`cluster/`](./cluster/).
The [OpenShift CI cluster](https://api.ci.openshift.org/) is configured with the
manifests under [`cluster/ci/`](./cluster/ci/). (**legacy**: do not add new
services here. Use [`core-services`](./core-services) or
[`services`](./services) instead.)
Clusters that are created by the testing infrastructure for validating OpenShift
are configured with the profiles under [`cluster/test-deploy/`](./cluster/test-deploy/).
For directions on how to set up clusters for development, see the
[README](./cluster/test-deploy/README.md).
### Legacy Service Configuration
Manifests for services that are in development, experimental, legacy or not
critical in some other way are present in the [`projects`](./projects)
directory. Compared to the [core services](#core-services-and-configuration) and
[services](#additional-services-and-configuration) configuration,
these projects do not need to follow any common structure or conventions other
than clear ownership. They must not interfere with the core services in any way.
Additionally, manifests for building container images for component repositories
live under [`projects/`](./projects/). This purpose is deprecated; authors of
components built by manifests in this directory should remove them and ensure
that their component is appropriately built by the `ci-operator` instead.
## Tooling Build Manifests
Manifests for building container images for tools live under [`tools/`](./tools/).
These tools are either useful in managing this repository or are otherwise useful
commonly across component repositories.