live wire
AI · Red Hat documents usage-based admission fair sharing for Kueue 1.4 on OpenShiftRed Hat DeveloperAI: Red Hat maps governed firewall changes from ServiceNow through Ansible and two human approval gatesRed Hat DeveloperCLUSTER MGMT · ACM 2.17 makes Submariner 0.24 GA with Important-rated fixesRed Hat ErrataPLATFORM · Red Hat makes on-premises Lightspeed recommendations GA for Satellite 6.18Red Hat ErrataSECURITY · Red Hat Hardened Images updates Tomcat 10 for nine authentication, access-control and DoS flawsRed Hat ErrataAI · Open Data Hub 3.6.0 EA1 bundles Trainer, MLflow and llm-d componentsOpen Data HubAI · Speculators 0.6.0 adds P-EAGLE parallel drafting for vLLM speculative decodingRed Hat DeveloperSECURITY · OpenShift 4.17.57 fixes seven Go and TLS CVEs in an Important-rated updateRed Hat ErrataAI · Red Hat benchmarks local LLM guardrails with EvalHub, exposing regex accuracy and latency trade-offsRed Hat DeveloperAI · Red Hat maps silent tool-call failures across agentic pipelinesRed HatAPI · Kuadrant 1.5.3 adds GRPCRoute policies and developer-portal API-key workflowsKuadrantAI · (Aug 25) IBM releases Apache-2.0 Granite 4.2 reasoning models in 3B, 8B and 30B sizesIBM ResearchJAVA · Red Hat build of Quarkus 3.33.3.SP1 fixes 13 CVEs in an Important-rated updateRed Hat errataAI · vLLM moves Kimi K2 RL weight sync across 384 H100s in 7.53 seconds (Aug 22)vLLMAI · Red Hat documents usage-based admission fair sharing for Kueue 1.4 on OpenShiftRed Hat DeveloperAI: Red Hat maps governed firewall changes from ServiceNow through Ansible and two human approval gatesRed Hat DeveloperCLUSTER MGMT · ACM 2.17 makes Submariner 0.24 GA with Important-rated fixesRed Hat ErrataPLATFORM · Red Hat makes on-premises Lightspeed recommendations GA for Satellite 6.18Red Hat ErrataSECURITY · Red Hat Hardened Images updates Tomcat 10 for nine authentication, access-control and DoS flawsRed Hat ErrataAI · Open Data Hub 3.6.0 EA1 bundles Trainer, MLflow and llm-d componentsOpen Data HubAI · Speculators 0.6.0 adds P-EAGLE parallel drafting for vLLM speculative decodingRed Hat DeveloperSECURITY · OpenShift 4.17.57 fixes seven Go and TLS CVEs in an Important-rated updateRed Hat ErrataAI · Red Hat benchmarks local LLM guardrails with EvalHub, exposing regex accuracy and latency trade-offsRed Hat DeveloperAI · Red Hat maps silent tool-call failures across agentic pipelinesRed HatAPI · Kuadrant 1.5.3 adds GRPCRoute policies and developer-portal API-key workflowsKuadrantAI · (Aug 25) IBM releases Apache-2.0 Granite 4.2 reasoning models in 3B, 8B and 30B sizesIBM ResearchJAVA · Red Hat build of Quarkus 3.33.3.SP1 fixes 13 CVEs in an Important-rated updateRed Hat errataAI · vLLM moves Kimi K2 RL weight sync across 384 H100s in 7.53 seconds (Aug 22)vLLM
upstreambeat.ai
guideAI

Red Hat breaks a production RAG workflow into five retryable OpenShift AI components

The reference pipeline separates document processing and model deployment, preserves intermediate data in object storage, and gives operators reproducible run history.

Five-component OpenShift AI RAG workflow with a storage handoff and separate model-serving path.
AI-generated diagram
By The News Desk· Sep 1, 2026the quick take — two AI hosts, this story only

Red Hat has published a production-oriented reference workflow for retrieval-augmented generation on OpenShift AI, replacing a single Ray Data script with five independently runnable pipeline components. The design is aimed at teams that need repeatable runs, isolated retries and a record of the parameters used to build a vector collection.

The important shift is not a new retrieval algorithm. It is the move from a monolithic document-processing job to an orchestrated system that can fail, resume and evolve without rerunning every stage.

What the pipeline changes

The reference architecture uses OpenShift AI Pipelines to coordinate two parallel chains. The data chain parses and chunks PDFs with Docling on Ray, optionally deploys an embedding service, and writes vectors to Milvus. The model chain downloads an LLM and deploys it through KServe and vLLM.

Those chains are split into five Kubeflow Pipeline components: parse_and_chunk, ingest_to_milvus, optional deploy_embedding_model, download_model, and model_deployment. Each has its own image, parameters and interface, so teams can replace a parser or reuse the model-deployment stage without editing the whole workflow.

Between parsing and ingestion, the design writes JSONL output to S3-compatible storage. That is a deliberate property of this implementation rather than an automatic OpenShift AI feature. If vector ingestion fails after a large document set has already been parsed, the operator can repair the Milvus connection and rerun only the failed component instead of repeating the expensive parse.

Where OpenShift AI fits

The example combines Docling, Ray through KubeRay, Milvus, S3-compatible storage, vLLM and KServe. OpenShift AI supplies the managed orchestration layer around them: pipeline run history, Ray cluster lifecycle, GPU scheduling through Kueue, model serving, and the dashboard used to launch and inspect runs.

The components also expose practical scale choices. Smaller collections can use the Granite 125 million-parameter English embedding model on CPUs, while larger jobs can direct embedding requests to a GPU-backed vLLM service. Model downloads are cached on persistent storage with a sentinel file so subsequent runs do not fetch the same weights again.

What to try

Platform teams evaluating the pattern need an OpenShift AI cluster with AI Pipelines, KubeRay, Milvus, object storage, access to the selected Hugging Face model and GPU capacity for serving. Red Hat’s example repository includes a notebook that configures credentials and parameters, compiles the pipeline and submits it.

The practical test is failure recovery: run the pipeline on a representative document set, interrupt or deliberately break the Milvus stage, then confirm that ingestion can resume from the stored JSONL output without repeating Docling processing. That exercise will show whether the component boundaries and storage choices match the team’s operating model before the workflow is adapted for production data.

Filed by The News Desk. Corrections: desk@upstreambeat.ai · Our standards →

comments · 0

    Comments are moderated before they appear. Your email is used once to confirm it is you — never shown, never sold. Corrections and questions get an answer from the desk when we have one.