Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Introducing Builds for OpenShift 1.2

December 16, 2024
Siamak Sadeghianfar
Related topics:
CI/CDDeveloper tools
Related products:
Red Hat OpenShift

    Builds for OpenShift provides developers with a consistent and secure way to create container images directly within Red Hat OpenShift clusters. With its foundation built on Shipwright, an open source CNCF project, Builds for OpenShift simplifies the process of creating OCI-compliant images using the image build of your choice while leveraging OpenShift's enterprise-grade capabilities.

    Builds for OpenShift 1.2 is now generally available! This release introduces new features designed to enhance usability, broaden platform support, and enable developers to use Builds in a wider range of environments.

    What’s new in Builds for OpenShift 1.2

    The 1.2 release of Builds for OpenShift focuses on extending the product’s usability across diverse environments and architectures while continuing to improve the user experience of building container images on the platform. Let’s dive into the highlights.

    Support for air-gapped environments and restricted networks

    Many organizations run their container infrastructure in disconnected environments where clusters do not have full access to the internet due to the security requirements. With the 1.2 release, admins can take advantage of OpenShift mirroring procedure for disconnected clusters in order to install Builds from the OperatorHub and enable developers to run image builds within these clusters. 

    Support for Arm and IBM Power and Z systems

    Red Hat OpenShift is supported on a diverse range of architectures and infrastructure including x86, Arm and IBM Power, and Z systems. With the 1.2 release, Builds for OpenShift is available on all architectures that the OpenShift platform supports

    Shipwright Builds in Web Console

    In order to simplify application onboarding with Shipwright, developers can choose to build their application with Shipwright Builds when importing it within the OpenShift Web Console. A Shipwright Build is then generated for the application to build an image and push it to the image registry. Furthermore, the Shipwright views are enhanced to provide easy access to Shipwright resources such as Builds and BuildStrategies in addition to including Build samples within the YAML editor to assist creating new Builds based on the provided examples. 

    OpenShift Web Console - Import from Git with Shipwright Builds
    Figure 1: OpenShift Web Console—Import from Git with Shipwright Builds.
    OpenShift Web Console - Shipwright Builds
    Figure 2: OpenShift Web Console—Shipwright Builds.
    OpenShift Web Console - Shipwright Build Samples in YAML Editor
    Figure 3: OpenShift Web Console—Shipwright Build Samples in YAML Editor.

    Entitled builds with Shared Resource CSI Driver

    Shared Resource CSI Driver enables sharing secrets and ConfigMaps across namespaces while controlling granular access through Kubernetes RBAC. This is particularly useful when building container images using a Dockerfile to install Red Hat Enterprise Linux (RHEL) RPM packages during the build which require an active RHEL entitlement configured. Using the Shared Resource CSI Driver, a cluster admin could allow specific namespaces to mount the RHEL entitlements (included in an OpenShift subscription) secret which is available on the cluster directly into the Shipwright Builds, Tekton Pipelines, and etc. and install RHEL RPM packages during Dockerfile builds. See below:

    kind: SharedSecret
    metadata:
      name: etc-pki-entitlement
    spec:
      secretRef:
        name: etc-pki-entitlement
        namespace: openshift-config-managed

    Once the admin has created the SharedSecret for the RHEL entitlements secret and configures RBAC for the target namespaces, developers can create Builds that consume the RHEL entitlements during the image build, without having to duplicate them into their namespace:

    kind: Build
    metadata:
      name: myapp
    spec:
      ...
      strategy:
        name: buildah
        kind: ClusterBuildStrategy
      volumes:
      - csi:
          driver: csi.sharedresource.openshift.io
          readOnly: true 
          volumeAttributes:
            sharedSecret: etc-pki-entitlement
        name: etc-pki-entitlement

    Getting started with Builds

    Builds 1.2 is available in the OperatorHub on OpenShift 4.12 to 4.17. In order to try Builds, install the Builds for OpenShift operator from the OperatorHub. Once ready, follow this guide to build an image using one of the provided build strategies. You can read more about this release in the documentation. 

    Related Posts

    • Project Shipwright and the future of Red Hat OpenShift builds

    • Where can I download the OpenShift command line tool?

    • Debugging applications within Red Hat OpenShift containers

    • Container Images for OpenShift - Part 1: Objectives

    Recent Posts

    • Trusted software factory: Building trust in the agentic AI era

    • Build a zero trust AI pipeline with OpenShift and RHEL CVMs

    • Red Hat Hardened Images: Top 5 benefits for software developers

    • How EvalHub manages two-layer Kubernetes control planes

    • Tekton joins the CNCF as an incubating project

    What’s up next?

    Learn the foundations of OpenShift through hands-on experience deploying and working with applications, using a no-cost OpenShift cluster through the Developer Sandbox for Red Hat OpenShift.

    Start the activity
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.