, ,

Red Hat AI Hybrid Cloud Deployment, and Where It Actually Runs (Red Hat Gen AI Series, Part 4)

Red Hat AI runs on bare metal, in your private cloud, on public cloud GPU instances and in air gapped sites. Here is how to place a self hosted GenAI project when its data cannot leave the building.

Red Hat Gen AI Series · Part 4 of 30

A compliance officer once stopped a project I was on with a single sentence: show me, on a diagram, every place a customer support ticket touches disk. We could not draw it, and the pilot slipped a quarter. That question, not a benchmark score, is what decides where Red Hat AI runs.

Key takeaways: Red Hat AI is one stack that runs in many places, and hybrid cloud means picking a place per workload, not running everywhere at once. RHEL AI (a bootable Linux image that carries a model server and tuning tools) ships for bare metal and the major clouds. OpenShift AI (Red Hat's Kubernetes based AI platform) runs self managed anywhere OpenShift runs, or as a managed add on. Air gapped installs exist. Settle data residency before you pick an instance type, because that decision is expensive to reverse.
Who this is for: An engineer who has shipped software and called a hosted model API, but has never stood up self hosted inference. This part builds on Part 1, Part 2 and Part 3. Product behaviour verified against Red Hat AI 3, RHEL AI 3.0 and OpenShift AI 3.0 documentation, checked mid 2026.

Where Red Hat AI can physically run

Red Hat sells the hybrid cloud idea hard, so it helps to say what it means in concrete terms. Red Hat AI is a single software stack that can land on four kinds of surface: a bare metal server in a room you control, a virtual machine in your own private cloud, a GPU enabled instance rented from a public cloud, and a disconnected site with no route to the internet at all. Same models, same tools, different address. Hybrid cloud is just the practice of running some of those surfaces at once and treating them as one estate.

Below is how the three products in the stack map onto those surfaces. RHEL AI targets a single tuned server, OpenShift AI targets a cluster, and the Red Hat AI Inference Server is a container that drops into any of them. Keep this shape in your head as the rest of the part fills it in.

flowchart TD DC[On prem datacentre] –> RHEL[RHEL AI single GPU box] DC –> OCP[OpenShift AI self managed] CLOUD[Public cloud] –> INST[Rented GPU instance] CLOUD –> MGD[Managed OpenShift ROSA or ARO] AIR[Air gapped site] –> MIRROR[Local mirror plus RHEL AI] RHEL –> APP[Support assistant] OCP –> APP MGD –> APP INST –> APP MIRROR –> APP
One stack, five landing spots, one application. Hybrid cloud is choosing which spots you actually use.

Hybrid cloud without the marketing gloss

Vendor decks make hybrid cloud sound like a capability you switch on. In practice it is a set of placement decisions you make one workload at a time, and each decision trades data gravity against convenience. A model that answers from a corpus wants to sit next to that corpus, because moving several terabytes of documents to wherever the GPU happens to be is slow, costly and, for regulated data, sometimes illegal.

What Red Hat actually gives you here is portability of the runtime, not of the data. Because the same container and the same model formats run on every surface, you can move where inference happens without rewriting the application, in the same spirit as keeping an application portable across model providers. That portability is worth real money the day a cloud contract turns sour or a datacentre fills up. It is not a licence to scatter one workload across three clouds; doing that multiplies your egress bill and your attack surface for no gain.

A second cost hides in latency. Inference that runs three hundred milliseconds away across a network link feels slow to a support agent typing a question, and every retrieval round trip to a distant vector store piles on top of it. Co locating the model, the index and the application on one side of the boundary removes that tax, which is a quieter reason on prem placement often reads faster than a cloud instance that is technically larger. Placement, put plainly, is a performance decision as much as a compliance one.

RHEL AI deployment targets

RHEL AI ships as a bootable image, a whole operating system with the model server, the ilab tooling and a Granite model baked in. Red Hat provides that image for bare metal and for the major clouds: you can buy it from the AWS and Azure marketplaces and run it on their GPU enabled instances, and there are images for IBM Cloud and Google Cloud as well. One image, one server, one GPU footprint to start. That single node shape is the point of RHEL AI, and it is why it does not appear as a managed cluster service.

Where it lands still decides what hardware you get. A single accelerator card gives you tens of gigabytes of GPU memory; a full node gives you hundreds. That range is the difference between serving one small model and serving a large one with room for its KV cache, the running memory a model uses to hold the conversation so far. The chart shows the three steps you will actually climb as the project grows.

GPU memory per single deployment stepOne card, one flagship card, one full node48 GB80 GB640 GBSingle L40SSingle H1008x H100 node
The jump from one card to a full node is more than tenfold. Placement decides which step you can reach.

OpenShift AI, self managed or managed service

OpenShift AI comes in two shapes, and the difference is who runs the Kubernetes underneath. Self managed OpenShift AI installs on any OpenShift cluster you run, whether that cluster sits on bare metal in your datacentre, on virtual machines, or on a public cloud. You own the control plane and you own the upgrades. The managed cloud service is instead an add on to a Red Hat managed cluster: ROSA (Red Hat OpenShift Service on AWS), ARO (Azure Red Hat OpenShift), or OpenShift Dedicated. There the provider and Red Hat run the cluster jointly and bill it through the cloud, and you get scale without staffing a Kubernetes team.

Cost models differ as sharply as the residency picture. Self managed means you carry the cluster, the hardware, the operators and the upgrade nights. Managed means you rent that operational burden from Red Hat and the cloud, paying a premium per hour in exchange for not staffing a platform team at two in the morning. For a small team shipping one assistant that premium can be cheaper than the head count it replaces, and for a large group that already runs OpenShift it is close to pure markup.

That split matters for data residency. Self managed on your own bare metal keeps every byte inside your walls. A managed service keeps your data in whichever cloud region the cluster lives in, under that provider's shared responsibility model, which is fine for a lot of workloads and disqualifying for a few. Here is the full surface, product by product. This table is the one to bookmark.

ProductBare metal on premPrivate cloud VMPublic cloud GPU instanceManaged OpenShiftAir gapped
RHEL AIYes, bootable imageYesYes, AWS and Azure marketplaces, IBM and GCP imagesNot applicable, single nodeYes, with a local mirror
OpenShift AI self managedYesYesYes, on your own OpenShiftVia a cluster you runYes, documented disconnected install
OpenShift AI cloud serviceNoNoNot directlyYes, add on to ROSA, ARO or DedicatedNo
AI Inference ServerYes, containerYesYesYesYes
Deployment surface matrix. The managed cloud service is the only row you cannot bring fully in house.

Data residency and disconnected deployments

For a company that cannot send its data to a hosted API, residency is the whole game. Two levers control it. First, disconnected installs: OpenShift AI has a documented air gapped path where you mirror the container images into a registry inside the isolated network, and the object storage the platform reads must sit in that same network. Nothing phones home. RHEL AI can be stood up the same way behind a local mirror. Second, egress cost, which is the quiet tax on any design that lets data leave.

People underestimate egress because the per gigabyte number looks tiny. At roughly 0.09 US dollars per gigabyte to the public internet on a major cloud, before any volume discount, a design that streams responses and logs out of the region adds up faster than the compute in some months. Rates vary by provider and by destination, and cross region transfer is cheaper than transfer to the open internet, so treat these as order of magnitude anchors, not quotes.

Worth naming the reverse case too. A workload whose data is already public, say a documentation assistant that only reads pages you publish on the open web, carries no residency constraint at all, and for that a public cloud instance or a managed service is the sane default because it ships fastest. Residency is a property of the data, not of Red Hat AI, so the same stack lands in opposite places for two projects that look identical on a slide. Sorting your sources by that property first is what keeps the decision honest.

Egress scenarioMonthly volumeApprox cost at 0.09 per GB
Cross region corpus replication200 GBabout 18 USD
Response and log streaming to a cloud tool1 TBabout 90 USD
Full reindex re sync3 TBabout 270 USD
Egress on a design that lets data leave. Small numbers that compound, and that an on prem box makes zero.
War story: On one build I moved a pilot onto a public cloud GPU instance to skip a six week hardware procurement queue. It worked, until the client's compliance team found that support tickets carrying customer personal data had crossed a region boundary that their policy forbade. We spent six weeks and roughly forty thousand pounds of consulting time unwinding it and rebuilding on an on prem RHEL AI box. The instance was never the cheap option; the residency review was the real cost, and I had let latency and convenience pick the location before compliance did.

Placing the support assistant

Last part we decided the running project, an internal support assistant that answers staff and customer questions from product docs, a support ticket archive and a changelog, starts life on a single RHEL AI server and graduates to OpenShift AI once it needs scale. This part places those two stages physically. The corpus is the deciding fact: the ticket archive holds customer personal data that the company's own policy says cannot leave its network. That single sentence removes the public cloud instance as a resting place before we compare anything else.

The assistant will ground its answers with retrieval over that corpus, the pattern covered in what RAG is, so the model and the documents want to sit on the same side of the network boundary. When it later moves to a cluster, the placement question becomes the same one you face serving any machine learning model: where does the request enter, and where does the data it needs already live. Use this table to place a workload once you know its residency tier.

OptionData leaves your networkWho runs the GPUsTime to first valuePick when
On prem RHEL AI boxNoYouSlow, hardware lead timeData cannot leave, load is steady
Private cloud VM with GPUNo, your datacentreYouMediumYou already hold GPU capacity in house
Public cloud GPU instanceYesCloud providerFastBurst or spiky load, data allowed to leave
Managed OpenShift plus OpenShift AIDepends on regionShared, provider and youFastYou want scale without running Kubernetes
Placement decision table. Read the residency column first, then everything else.
Production gotcha: Hybrid does not mean the cluster ends at your firewall. A self managed OpenShift AI cluster still reaches out for operator catalogs, image registries and updates by default, so a residency review passes on paper and fails in practice the first time a node pulls an image from the internet. If the workload is meant to stay inside, run the disconnected install deliberately, do not assume a normal install stays put.

Deployment choice I would make here

For this project I would start the assistant on an on prem RHEL AI box the company owns, tune it there, and graduate the tuned model to self managed OpenShift AI in the same datacentre when it needs to serve more than one team at once. I would use public cloud GPU instances only for burst, a short lived load test or a one off tuning run on synthetic data that carries no customer records, and never as the resting place for the corpus. The option I would avoid is the one that looks fastest on a Friday: spinning up a cloud GPU instance to demo quickly, then quietly leaving production there. That is the exact move that cost me six weeks and a rebuild.

Cost trade off: A public cloud GPU instance has near zero setup cost and an egress bill that never sleeps; an on prem box has a real capital cost and zero egress. For a steady internal workload that runs for years, the box usually wins on total cost and always wins on residency. See the GenAI cost breakdown for how these pieces add up over a full year.

One thing to do on Monday: for your actual corpus, write down which residency tier each source falls in, public, internal, or regulated, before anyone picks an instance type. That one page settles ninety percent of the placement argument and stops the demo from becoming production in the wrong place. Next in the series we stop choosing and start building, standing up alignment with InstructLab and the LAB method so the assistant learns your own documents.

Red Hat Gen AI Series · Part 4 of 30
« Previous: Part 3  |  Guide  |  Next: Part 5 »

References

About The Author


Discover more from Journal of Intelligent Infrastructure

Subscribe to get the latest posts sent to your email.

Leave a Reply

Your email address will not be published. Required fields are marked *

Architect’s Toolkit

About the Author

Dr. Pranay Jha is a Cloud and AI Consultant with 18+ years of experience in hybrid cloud, virtualization, and enterprise infrastructure transformation. He specializes in VMware technologies, multi-cloud strategy, and Generative AI solutions. He holds a PhD in Computer Applications with research focused on Cloud and AI, has published multiple research papers, and has been a VMware vExpert since 2016 and a VMUG Community Leader.

Discover more from Journal of Intelligent Infrastructure

Subscribe now to keep reading and get access to the full archive.

Continue reading