, ,

RHEL AI vs RHEL vs OpenShift AI, and Where a Project Belongs (Red Hat Gen AI Series, Part 3)

RHEL, RHEL AI and OpenShift AI get confused constantly. One is an operating system, one runs a single model on one server, one runs many across a cluster. Here is how to pick the right one for a project, with the trade offs named.

Red Hat Gen AI Series · Part 3 of 30

Do we need OpenShift for this? A platform lead asked me that two days after we picked the model in Part 2, and it is the right question asked slightly wrong. We had one Granite model, one grounded assistant, and one box in mind. Reaching for a Kubernetes cluster on day one would have added three machines and a month of plumbing to serve a workload that fits on a single server. Reaching for nothing but a bare operating system would have meant rebuilding, by hand, the exact stack Red Hat already packages.

Three product names sit close enough to blur together: Red Hat Enterprise Linux, RHEL AI, and OpenShift AI. They are not three tiers of the same thing and they are not interchangeable. One is an operating system, one runs a single model on one server, and one runs many models across a cluster. This part draws the lines between them and settles which one our support assistant belongs on right now, and which one it grows into later.

Key takeaways

Plain RHEL is the operating system and nothing more for AI. It gives you drivers, security and a 10 year life cycle, but no model, no tuning tool and no serving stack. You assemble all of that yourself.

RHEL AI is RHEL shipped as a bootable image with Granite, InstructLab, PyTorch and accelerator support baked in. It runs one model on one server and has no orchestration, no multi tenancy and no pipelines.

OpenShift AI is a cluster platform on Kubernetes: many models, many teams, pipelines, a model registry, KServe serving and GPU scheduling. It needs an OpenShift cluster, which is three machines at the barest minimum.

You do not need OpenShift AI to run RHEL AI. That is the single most common misread, and it makes teams stand up a cluster they did not need yet.

For the support assistant, start on RHEL AI and plan the move to OpenShift AI for Phase 3, when a second team, a second model or real scale actually arrives.

Who this is for: the same engineer from Parts 1 and 2, who has called a hosted model API and, after Part 2, has a Granite size in mind but has not committed to a platform. No Kubernetes knowledge is assumed here. This is a decision part with no code. For the underlying question of when tuning even earns its cost, it leans on the GenAI explainer on fine tuning versus RAG versus prompting rather than repeating it.

Three products with three different jobs

Start with what each product is in one sentence, because the names invite confusion. Red Hat Enterprise Linux is a general purpose enterprise operating system, the substrate that everything else runs on. RHEL AI is a specialised build of that same operating system, delivered as a bootable image, with a foundation model platform bolted in so one server can develop, tune and serve a Granite model. OpenShift AI is a full machine learning and generative AI platform that runs on an OpenShift cluster, coordinating many models and many teams with pipelines, a registry and cluster wide serving.

Under the hood, RHEL AI is literally RHEL. Red Hat builds it using image mode, an approach that packages the operating system as a bootable container image, or bootc image in one clause, so it deploys and updates like a container rather than a hand configured server. OpenShift AI sits a layer higher again: it assumes you already run OpenShift, which is Red Hat Kubernetes, and it adds the AI specific machinery on top. So the relationship is not three rungs of one ladder. It is an operating system, a single node product built from that operating system, and a cluster product built on Kubernetes. Part 1 sketched how these fit; here we choose between them.

flowchart TD Start[What are you standing up] --> Q1{More than one team or one model} Q1 -->|No, one model one box| Q2{GPUs on a single host} Q1 -->|Yes| OSA[OpenShift AI, cluster platform] Q2 -->|Yes, ready to go| RA[RHEL AI, single server] Q2 -->|No, assemble it yourself| R[Plain RHEL, build the stack]
A first cut at the decision. Most single model projects land on RHEL AI, and grow into OpenShift AI later, not the other way around.

Where plain RHEL stops being enough

Plain Red Hat Enterprise Linux gives you a great deal, just none of it specific to running a model. A subscription buys a hardened operating system, a 10 year life cycle, live kernel patching, 24×7 support and legal cover through the Open Source Assurance program. What it does not buy is a model, a tuning tool, or an inference server. On a bare RHEL box you install the GPU drivers, the CUDA or ROCm stack, a Python environment, vLLM, and a model you sourced yourself, and you wire them together and keep them patched. That is a legitimate path if you want total control over every layer, and plenty of teams run inference exactly this way.

Cost of that control is that you rebuild, and then own, the precise stack RHEL AI already assembles and supports. When a driver update breaks your serving engine at 2am, plain RHEL support will help with the operating system, not with why vLLM stopped loading your model. For a team whose job is to ship an assistant, not to maintain an inference platform, bare RHEL is usually a false economy. It is the right base when you have strong opinions about the stack and the staff to hold them, and the wrong one when you just want a model answering questions.

RHEL AI on a single server

RHEL AI takes that assembly problem off your plate for one server. It ships as a bootable image that already contains the Granite models under Apache 2.0, a supported and life cycled build of InstructLab for tuning, PyTorch, and accelerators tuned for NVIDIA, Intel and AMD. You boot the image, activate a subscription, pull a model, and serve it, without hand building the stack underneath. Everything the assistant needs for Phase 2, tuning Granite on the company docs and serving it, lives on that one box, which is exactly why Part 2 sized a single card rather than a rack.

Its ceiling is the single node. RHEL AI has no cluster scheduler, so it cannot spread one model across many machines or pack many models onto shared hardware. It has no multi tenancy, so two teams on one box share everything and isolate nothing. It has no pipeline engine, model registry or built in monitoring, so the machine learning operations you would want for a fleet are simply absent. None of that is a defect. RHEL AI is deliberately a single server product, and for one model in front of one team it is the shortest honest path from nothing to a served answer.

OpenShift AI across a cluster

OpenShift AI answers a different question: how a whole organisation runs many models across shared infrastructure. It is a platform on top of OpenShift, Red Hat Kubernetes distribution, and it adds machine learning and large language model operations, data science pipelines, a model registry and versioning, distributed training, and cluster wide serving. Serving runs on KServe, an upstream Kubernetes project that in 2025 became a CNCF incubating project, which turns a model into an InferenceService, a Kubernetes object that describes a deployed model, in one clause, and handles autoscaling, storage and networking around it. GPU scheduling, time slicing and multi tenancy through projects and resource quota let many teams share the same accelerators without trampling each other.

All of that power arrives with a cluster underneath it. OpenShift AI needs an OpenShift cluster, which at the barest minimum is a three node compact cluster and is more typically five nodes or more, plus the operators for Service Mesh and Serverless that KServe leans on in its advanced serving mode. This is the same pipeline and lifecycle discipline the Data Science series covers in CI and CD for machine learning pipelines and in serving machine learning models, now delivered as a supported product rather than assembled by hand. That is real value once you have many models and many teams, and real overhead when you have one of each.

DimensionPlain RHELRHEL AIOpenShift AI
Unit of deploymentOne server, OS onlyOne server, bootable imageCluster of nodes
Model bundledNoneGranite, Apache 2.0Granite plus any you bring
Tuning toolYou supply itInstructLab, supportedInstructLab plus pipelines
Serving engineYou wire itvLLM via ilabKServe plus vLLM runtimes
OrchestrationNoneNone, single nodeKubernetes, Knative, Istio
Multi tenancyOS level onlyOne team, one boxProjects and resource quota
MLOps and registryNoneNonePipelines, registry, monitoring
Best fitFull control, DIY stackOne model, one box, prove itScale, many models, many teams
Feature and trade off matrix. This is the reference artifact for this part: pin it and answer the platform question in one read.

Matching a platform to project shape

Last part the assistant got a model, Granite H-Tiny at FP8 on one card. This part gives it a home. The choice is not about which product is most capable, because OpenShift AI wins that on paper every time. It is about the shape of the project: how many models, how many teams, and how much platform you are willing to operate to serve them. The numbers below are the ones I use to keep that honest, because a platform decision made on capability alone always over buys.

Number that decidesRHEL AIOpenShift AI
Machines before first token13 minimum, 5 or more typical
Typical GPU scale1 to 8 in one boxTens to hundreds across nodes
Models served at once1 practicalMany, autoscaled
Isolated teams or tenants1Many, via projects and quota
New platform layers to learnClose to zero beyond RHELKubernetes, operators, KServe, mesh
Representative time to first tokenAn afternoonDays to weeks on a new cluster
Numbers table. If your honest answers are 1, 1 and 1 on models, teams and boxes, RHEL AI is the platform and OpenShift AI is premature.
Rule of thumb: count models, teams and boxes. If any two of those three are going to be more than one within six months, plan for OpenShift AI. If all three are one for the foreseeable future, RHEL AI is not a compromise, it is the correct answer, and you can graduate later without throwing work away.

Where the OpenShift AI first instinct goes wrong

Two beliefs push teams onto a cluster too early. First, the slideware positions OpenShift AI as the enterprise AI platform, which reads as an instruction to start there, and for a single grounded assistant that instruction is wrong. On a fresh cluster the cluster becomes the project for the first month, and the model waits. Second, Red Hat own phrasing that RHEL AI can be deployed and managed with OpenShift AI gets misread as RHEL AI needs OpenShift AI. It does not. RHEL AI boots and serves on one machine with zero Kubernetes, and the OpenShift AI integration is an option for when you scale out, not a prerequisite for starting.

Representative days to a first served tokenSingle model, one team. Field estimates, not a benchmarkRHEL AI~0.5 dayPlain RHEL, DIY~4 daysNew OpenShift AI~12 daysAn existing cluster collapses the red bar. A cluster you build for this one model does not.
Time to a first answer, not to a finished platform. The gap closes only if the cluster already exists.

I have watched this cost real time. A fintech team I advised put its first assistant, a single 7B model, straight onto a fresh four node OpenShift cluster because a slide said OpenShift AI was the enterprise path. Three weeks went into GPU operator versions, Service Mesh, Serverless and an InferenceService that would not scale from zero, and not one token had reached a user. We moved the same model onto a single RHEL AI box on a Thursday afternoon, and it answered its first grounded question before we went home. The cluster was the right destination and the wrong starting line, and the reversal cost them the better part of a month they never got back.

Where common advice is wrong

Start on the enterprise platform is bad guidance for a first model. Start on the smallest platform that fits the project, and move up when a real second team, second model or scale ceiling forces it. A cluster you provision for a single assistant is not enterprise readiness, it is a month of yak shaving that ships nothing.

Choosing RHEL AI for the support assistant

For the assistant this series builds, the platform is RHEL AI, on the single server from Part 1, running the Granite size from Part 2. One model, one team, one box: every number in the decision table reads one, so the single node product is not a stepping stone we are settling for, it is the right tool for the job in front of us. Plain RHEL loses because we would rebuild the stack Red Hat already supports, and OpenShift AI loses today because it would trade an afternoon for a month and hand us a cluster to operate before we have a single answer to show. When Phase 3 brings a second team, a second model or a scale the box cannot hold, we move to OpenShift AI on purpose, carrying a tuned model and a proven workload with us. That upgrade is the same cost and scale reasoning the Data Science series works through in GPU cost, scale and sizing for machine learning.

Your action for Monday is to write down three numbers for your own project, how many models, how many teams and how many boxes you will run in the next six months, and let those numbers pick the platform instead of the marketing. If they are one, one and one, commit to RHEL AI and stop shopping. Part 4 takes the next question head on: where Red Hat AI actually runs across the hybrid cloud, from a datacentre box to a cloud instance to the edge, now that you know which product you are deploying.

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

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