Chapter 1. Builds for Red Hat OpenShift release notes
Release notes contain information about new and deprecated features, breaking changes, and known issues. The following release notes apply for the most recent Builds releases on OpenShift Container Platform.
Builds is an extensible build framework based on the Shipwright project, which you can use to build container images on an OpenShift Container Platform cluster. You can build container images from source code and Dockerfiles by using image build tools, such as Source-to-Image (S2I) and Buildah. You can create and apply build resources, view logs of build runs, and manage builds in your OpenShift Container Platform namespaces.
Builds includes the following capabilities:
- Standard Kubernetes-native API for building container images from source code and Dockerfiles
-
Support for Source-to-Image (S2I) and
Buildahbuild strategies - Extensibility with your own custom build strategies
- Execution of builds from source code in a local directory
- Shipwright CLI for creating and viewing logs, and managing builds on the cluster
- Integrated user experience with the Developer perspective of the OpenShift Container Platform web console
For more information about Builds, see Overview of Builds.
1.1. Compatibility and support matrix Copy linkLink copied to clipboard!
In the table, components are marked with the following statuses:
| TP | Technology Preview |
| GA | General Availability |
The Technology Preview features are experimental features and are not intended for production use.
| Builds Version | Component Version | Compatible Openshift Pipelines Version | OpenShift Version | Support | |
|---|---|---|---|---|---|
| Operator | Builds (Shipwright) | CLI | |||
| 1.7 | 0.18.0 (GA) | 0.18.0 (GA) | 1.18-1.21 | 4.16-4.21 | GA |
| 1.6 | 0.17.0 (GA) | 0.17.0 (GA) | 1.18-1.21 | 4.16-4.20 | GA |
1.2. Release notes for Builds 1.7 Copy linkLink copied to clipboard!
Builds 1.7 is now available on OpenShift Container Platform 4.16-4.21.
With this release, you can use a new migration tool, Crane. It automatically converts the BuildConfig resources to Build resources, which simplifies adopting the builds for Red Hat OpenShift application. To learn more about this tool and its benefits, see Migrate BuildConfig resources to Builds for Red Hat OpenShift with Crane.
1.2.1. New features Copy linkLink copied to clipboard!
The following sections highlight what is new in Builds 1.7.
- Read-only root file systems enforced for containers
-
With this update, you must set the
readOnlyRootFilesystemparameter totruefor your containers in OpenShift Container Platform. This change addresses security audits and protects containers from potential vulnerabilities. - Operator pod containers now use read-only root file systems
- With this update, the root filesystems of the Operator pod container and the shared resource container are set to read-only. This enhancement improves security by preventing runtime modifications to internal container files. The update also includes an end-to-end (E2E) test to validate the workflow.
1.2.2. Fixed issues Copy linkLink copied to clipboard!
- Buffer overflow in error logging resolved
- Before this update, non-standard input could trigger a buffer overflow in error logging, leading to user data loss. With this update, improved database connection settings resolve the issue, ensuring error logging functions correctly and preventing data loss.
- CSI driver correctly enforces RBAC permissions for Secrets and ConfigMaps
-
Before this update, the Container Storage Interface (CSI) driver ignored forbidden errors when attempting to fetch source
SecretorConfigMapresources, mounting an empty volume instead of failing the operation and bypassing RBAC controls. With this update, the CSI driver correctly returns API client errors and requires an explicitRoleBindingto access resources.