Skip to content
This repository has been archived by the owner on Jun 14, 2019. It is now read-only.

A generator for Prow job configuration from CI Operator configuration

Notifications You must be signed in to change notification settings

openshift/ci-operator-prowgen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Warning: development has moved to https://github.com/openshift/ci-tools.git

Prow job generator for ci-operator

The purpose of this tool is to reduce an amount of boilerplate that component owners need to write when they use ci-operator to set up CI for their component. The generator is able to entirely generate the necessary Prow job configuration from the ci-operator configuration file.

TL;DR

Question: How do I create Prow jobs running ci-operator for a newly onboarded OpenShift component?

Answer:

  1. Get a working copy of openshift/release (we’ll shorten path to it to $RELEASE)
  2. Create a ci-operator configuration file under $RELEASE/ci-operator/config, following the organization/component/branch.yaml convention.
  3. Run ci-operator-prowgen --from-dir $RELEASE/ci-operator/config/<org>/<component> --to-dir $RELEASE/ci-operator/jobs
  4. Review Prow job configuration files created in $RELEASE/ci-operator/jobs/<org>/<component>
  5. Commit both ci-operator configuration file and Prow job configuration files and issue a PR to upstream.
  6. Profit after merge.

Use

To use the generator, you need to build it:

$ make build

Alternatively, you may obtain a containerized version from the registry on api.ci.openshift.org:

$ docker pull registry.svc.ci.openshift.org/ci/ci-operator-prowgen:latest

Generate Prow jobs for new ci-operator config

The generator uses the naming conventions and directory structure of the openshift/release repository. Provided you placed your ci-operator configuration file to the correct place in ci-operator/config, you may run the following ($REPO is a path to openshift/release` working copy):

$ ./ci-operator-prowgen --from-dir $REPO/ci-operator/config/org/component/ \
 --to-dir $REPO/ci-operator/jobs

This extracts the org and component from the configuration file path, reads the configuration files and generates new Prow job configuration files in the (...)/ci-operator/jobs/ directory, creating the necessary directory structure and files if needed. If the target files already exist and contain Prow job configuration, newly generated jobs will be merged with the old ones (jobs are matched by name).

Generate Prow jobs for multiple ci-operator config files

The generator may take a directory as an input. In this case, the generator walks the directory structure under the given directory, finds all YAML files there and generates jobs for all of them.

You can generate jobs for a certain component, organization, or everything:

$ ./ci-operator-prowgen --from-dir $REPO/ci-operator/config/org/component --to-dir $REPO/ci-operator/jobs
$ ./ci-operator-prowgen --from-dir $REPO/ci-operator/config/org --to-dir $REPO/ci-operator/jobs
$ ./ci-operator-prowgen --from-dir $REPO/ci-operator/config --to-dir $REPO/ci-operator/jobs

If you have cloned openshift/release with go get and you have $GOPATH set correctly, the generator can derive the paths for the input/output directories. These invocations are equivalent:

$ ./ci-operator-prowgen --from-release-repo --to-release-repo
$ ./ci-operator-prowgen --from-dir $GOPATH/src/github.com/openshift/release/ci-operator/config \
 --to-dir $GOPATH/src/github.com/openshift/release/ci-operator/jobs

What does the generator create?

See GENERATOR.md.

Develop

To build the generator, run:

$ make build

To run unit-tests, run:

$ make test

About

A generator for Prow job configuration from CI Operator configuration

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages