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.
Question: How do I create Prow jobs running ci-operator for a newly onboarded OpenShift component?
Answer:
- Get a working copy of openshift/release (we’ll shorten path to it to
$RELEASE
) - Create a ci-operator configuration file under
$RELEASE/ci-operator/config
, following theorganization/component/branch.yaml
convention. - Run
ci-operator-prowgen --from-dir $RELEASE/ci-operator/config/<org>/<component> --to-dir $RELEASE/ci-operator/jobs
- Review Prow job configuration files created in
$RELEASE/ci-operator/jobs/<org>/<component>
- Commit both ci-operator configuration file and Prow job configuration files and issue a PR to upstream.
- Profit after merge.
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
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).
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
See GENERATOR.md.
To build the generator, run:
$ make build
To run unit-tests, run:
$ make test