Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

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

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Red Hat OpenShift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • See all technologies
    • Programming languages & frameworks

      • Java
      • Python
      • JavaScript
    • System design & architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer experience

      • Productivity
      • Tools
      • GitOps
    • Automated data processing

      • AI/ML
      • Data science
      • Apache Kafka on Kubernetes
    • Platform engineering

      • DevOps
      • DevSecOps
      • Red Hat Ansible Automation Platform for applications and services
    • Secure development & architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & cloud native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • See all learning resources

    E-books

    • GitOps cookbook
    • Podman in action
    • Kubernetes operators
    • The path to GitOps
    • See all e-books

    Cheat sheets

    • Linux commands
    • Bash commands
    • Git
    • systemd commands
    • See all cheat sheets

    Documentation

    • Product documentation
    • API catalog
    • Legacy documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore the Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

OpenShift AI connector for Red Hat Developer Hub (Developer Preview)

November 10, 2025
Gabe Montero
Related topics:
Artificial intelligenceDeveloper ProductivityDeveloper Tools
Related products:
Red Hat AIRed Hat OpenShift AIRed Hat Developer Hub

    This article outlines new plug-ins and sidecar containers in Red Hat Developer Hub that provide integration between Developer Hub and Red Hat OpenShift AI. This integration lets you automatically transfer AI model metadata managed by OpenShift AI into Developer Hub’s Software Catalog.

    Automating AI model metadata in Developer Hub

    Red Hat Developer Hub is an internal developer platform (IDP) based on Backstage. It helps development teams and organizations increase productivity by combining parts of the development process into a single portal. Red Hat Developer Hub provides a software catalog, based on the Backstage catalog, that acts as a central library of applications, APIs, and software resources used by development teams within an organization.

    With Red Hat Developer Hub software catalog as a starting point, in November of 2024 we shared our approach to mapping metadata for AI models to the software catalog, including:

    • Connection information for running model instances
    • Version, lifecycle, or other descriptive indicators
    • Model cards
    • The APIs (FastAPI, Swagger docs) for interacting with the model servers

    If you revisit that post, you’ll see that:

    • Model servers are stored as Components with a type of model-server.
    • Models are stored as Resources with a type of ai-model.
    • Details of the API that a model server provides are stored as API entities.

    And with this article, we add the model cards often provided on various AI model hosting sites—stored as TechDocs and associated with the Components and Resources just mentioned.

    In the November article, we constructed two GitHub repositories to illustrate the proposed mapping. We then described using the familiar Developer Hub dashboard method to import Components, Resources, and API entities defined in GitHub into the catalog.

    But is a source code repository system like Git the source of truth for your AI model metadata? If you are a Red Hat OpenShift AI user, the answer is most likely no. Instead, this information is captured in OpenShift AI components like the Model Catalog, Model Registry, and even the InferenceServices that manage the Pods where your AI model servers are running.Ideally, administrators want to avoid the steps of duplicating AI model metadata already maintained in OpenShift AI into a source code repository with catalog-info.yaml files.

    To solve this, Red Hat Developer Hub 1.8 introduces a new developer preview offering. This offering automatically imports information directly from Red Hat OpenShift AI’s various sources and normalizes the data into Developer Hub entities: Component, Resource, TechDoc, and API in the Developer Hub software catalog. With this addition, Developer Hub expands its role as your organization’s centralized developer portal. It provides unified views of the AI infrastructure, tooling, services, and documentation OpenShift AI provides.

    Figures 1, 2, and 3 show AI-related Components, API entities with Swagger Docs, and TechDocs from model cards.

    A catalog query from the Developer Hub console provides Components corresponding to AI model servers imported by OpenShift AI Connector for Developer Hub.
    Figure 1: A catalog query in the Developer Hub console.
    A Swagger or FastAPI-styled API definition provided as part of an API Entity imported into Developer Hub by the OpenShift AI Connector for Developer Hub.
    Figure 2: An API entity imported into Developer Hub by the OpenShift AI connector.
    TechDocs imported into Developer Hub by the OpenShift AI Connector that correlate to the model cards provided for a given model by the OpenShift AI Model Catalog.
    Figure 3: Documentation view within Red Hat Developer Hub, showing the Model Overview for Qwen3-8B-FP8-dynamic-version-1.

    Getting started with the OpenShift AI connector for Red Hat Developer Hub

    First, let's look at the system overview for the OpenShift AI Connector for Red Hat Developer Hub.

    System overview

    The Openshift AI connector for Red Hat Developer Hub consists of two dynamic plug-ins and three sidecar containers that run in the Developer Hub pod (illustrated in Figure 4).

    A high-level system diagram of the OpenShift AI connector for Red Hat Developer Hub.
    Figure 4: A high-level system diagram of the OpenShift AI connector for Red Hat Developer Hub.

    The dynamic plug-ins include:

    • @red-hat-developer-hub/backstage-plugin-catalog-backend-module-model-catalog package: A Backstage Entity Provider extension that fetches the AI model metadata retrieved by the sidecar containers and creates/updates the various Component, Resource, and API entities.
    • @red-hat-developer-hub/backstage-plugin-catatlog-techdoc-url-reader-backend: A Backstage URLReader extension that fetches the AI model cards retrieved by the sidecar containers and creates or updates the TechDocs for AI-related Components and Resources.

    The sidecar containers include:

    • A rhoai-normalizer container that serves both as a KServe InferenceService Kubernetes controller (for monitoring the state of running model servers on the cluster) and as a client of the KubeFlow ModelRegistry and ModelCatalog that OpenShift AI provides. These two components are where the AI platform engineer maintains the AI model metadata. Data from those components are normalized into a format understood by the two dynamic plug-ins.
    • A storage container provides a REST endpoint that maintains a ConfigMap called bac-import-model in the Developer Hub namespace. This ConfigMap serves as a cache of the AI model metadata retrieved from OpenShift AI. The rhoai-normalizer container interacts with the storage REST API to create, update, or delete AI model metadata as changes occur in OpenShift AI.
    • A location container provides a REST endpoint the entity provider plug-in uses to fetch AI model metadata and model cards. The storage container calls the location REST endpoint to update the available model metadata and model cards.

    As the system evolves and grows, we see:

    • Creating more “normalizer” types that handle other sources of AI model metadata.
    • Creating more back-end storage types that are managed by a storage container that implements the same REST API as our initial ConfigMap-based offering.

    Install the plug-ins and sidecar containers

    Here's how to install the plug-ins and sidecars, including prerequisites and an installation overview.

    Prerequisites

    • Red Hat Developer Hub 1.8 or later
    • Red Hat OpenShift AI:
      • To have model cards from the Model Catalog imported as TechDocs, you need version 2.25 or later. You must also enable the Model Catalog dashboard and a Model Registry (they are both off by default).
      • For the rest of the features, version 2.20 or later will suffice. Enabling the Model Registry and its associated dashboard allows a user to more directly customize AI model metadata.

    Installation overview

    1. There are two dynamic plug-ins in the Red Hat Developer Hub Marketplace, @red-hat-developer-hub/backstage-plugin-catalog-backend-module-model-catalog and @red-hat-developer-hub/backstage-plugin-catalog-techdoc-url-reader-backend, which you add to your dynamic plug-in ConfigMap.
    2. There is a set of Kubernetes RBAC manifests you’ll apply in the namespace where your Developer Hub deployment resides, and a set of Kubernetes RBAC manifests you’ll apply where the Red Hat OpenShift AI Model Registry/Catalog deployment resides.
    3. The specification of the three sidecar containers will need to be added to either your Backstage CustomResource instance (if you installed using the Operator) or Deployment instance (if you installed using the Helm chart).
    4. Finally, you’ll update the Backstage app-config ConfigMap and enable the Catalog Entity Provider that ships with the @red-hat-developer-hub/backstage-plugin-catalog-backend-module-model-catalog dynamic plug-in.

    The complete installation guide for the Developer Hub OpenShift AI connector is part of the Developer Hub 1.8 documentation. We will update this blog post with a link to the installation guide when it is available.

    Updating what the OpenShift AI connector imports into Developer Hub

    The default metadata imported from OpenShift AI is as follows:

    • InferenceServices (Component type model-server):
      • URL of the OpenShift Route (if exposed).
      • URL of the Kubernetes Service.
      • Authentication requirement status.
    • Model Registry (Resource type ai-model):
      • Model description, artifact URIs, and author/owner information.
    • Model Catalog:
      • Links to the model card (as Developer Hub TechDocs).
      • Model license URL.

    Given this, the engineers maintaining OpenShift AI might be different from the engineers maintaining Developer Hub, depending on your organization and how the OpenShift clusters are administered. If this is the case, coordination between the Developer Hub and OpenShift AI maintainers is required to set metadata in OpenShift AI so it propagates to Developer Hub.

    Using the AI Model Software Catalog updates from a Developer Hub template

    Now that the AI models and model servers are imported into the Developer Hub Software Catalog, what can you do with them?

    Accessing REST API documentation or the model cardsh within Developer Hub adheres to the core Backstage tenet: providing a central location for information for development teams.

    Additionally, in conjunction with the Developer Hub version 1.8 developer preview offering of the AI Model Catalog, we have updated the example AI application templates first announced in November 2024 to provide an alternative to typing in the AI model endpoint information. This alternative queries the Developer Hub Software Catalog for the Resources and Components imported using our prescribed format:

    • The common EntityPicker used by each of the sample applications can be seen here.
    • Associated steps that obtain the model-server Component associated with an ai-model Resource can be seen here.
    • The final use of these building blocks in each specific application will look something like this.

    This change simplifies the task of looking up AI model connection information for AI application developers who use Developer Hub and these templates. Figure 5 shows the simple yet powerful drop-down.

    Selecting an AI model from the Developer Hub catalog.
    Figure 5: Selecting an AI model from the Developer Hub catalog.

    Conclusion

    Building on the prior blog post’s definition of a model catalog structure for AI models and model servers, we believe this developer preview shows the value provided by the OpenShift AI connector’s integration between Red Hat Developer Hub and Red Hat OpenShift AI. Metadata is pulled from the source of truth from within the OpenShift AI platform. It is then imported in a way that’s familiar to existing Red Hat Developer Hub or Backstage users and allows easy integration with other Developer Hub features.

    Explore more topics:

    • Why internal developer portals matter
    • The platform engineer's role in the DevSecOps inner and outer loops
    • More about Red Hat Developer Hub and Software Templates
    • How to template AI software in Red Hat Developer Hub

    Related Posts

    • How platform engineering accelerates enterprise AI adoption

    • Build your first Software Template for Backstage

    • How to implement developer self-service with Backstage

    • Build an AI agent to automate TechDocs in Red Hat Developer Hub

    • How Developer Hub and OpenShift AI work with OpenShift

    • How building workbenches accelerates AI/ML development

    Recent Posts

    • OpenShift AI connector for Red Hat Developer Hub (Developer Preview)

    • MCP in Red Hat Developer Hub: Chat with your catalog

    • How to develop Red Hat Enterprise Linux applications on other Linux distributions or Microsoft Windows

    • Automate VM golden image builds for OpenShift with Packer

    • Setting up Intel TDX VMs with Trustee on OpenShift

    What’s up next?

    Writing “Hello, World” hasn’t gotten any harder—but running it has. Download our developer’s guide to developer portals to learn how engineering teams can reduce friction and boost productivity using internal developer portals (IDPs).

    Get the e-book
    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
    © 2025 Red Hat

    Red Hat legal and privacy links

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

    Report a website issue