Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared 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
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

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

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • 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 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

Supercharging AI isolation: microVMs with RamaLama & libkrun

July 2, 2025
Eric Curtin Daniel Walsh Sergio Lopez Pascual Jake Correnti
Related topics:
Artificial intelligenceLinuxSecurity
Related products:
Podman DesktopRed Hat AI

Share:

    In our previous post, we explored how RamaLama revolutionizes AI model management by containerizing them with Podman, providing a robust default security posture. We highlighted the critical need for isolation in the age of widespread AI model deployment, especially with the non-binary nature of models regarding security and trust questions. While containers offer a significant leap in isolating AI models from the host system, the journey towards ultimate security and resource efficiency doesn't end there.

    Today, we're diving deeper into the isolation capabilities of RamaLama by introducing the power of microVMs, leveraged through libkrun and Podman. This approach takes AI model isolation to the next level, merging the best of container agility with the strong security boundaries of traditional virtual machines.

    The microVM advantage for AI

    Traditional virtual machines (VMs) provide strong isolation by running a complete guest operating system, including its own kernel, separate from the host. This offers a high degree of security, but comes with the overhead of increased resource consumption and slower startup times. Containers, on the other hand, share the host kernel, making them lightweight and fast, but with a slightly less stringent isolation boundary.

    microVMs are a game-changer because they strike a balance. They provide the hardware-level isolation of a VM by running a minimal, highly optimized kernel and virtualized hardware, but with boot times and resource footprints comparable to containers. This makes them ideal for workloads that demand both high security and efficient resource utilization, such as AI model inferencing.

    For AI models, microVMs offer several compelling benefits:

    • Enhanced security: Each AI model runs within its own dedicated microVM, providing a strong hardware-isolated boundary. This significantly reduces the attack surface compared to containers that share the host kernel. Even if a vulnerability were exploited within the AI model's environment, the blast radius would be contained within that specific microVM, preventing lateral movement to the host or other models.
    • True multi-tenancy: In scenarios where multiple AI models from different sources or users are running on the same hardware, microVMs ensure complete isolation between them. This is crucial for maintaining data privacy and preventing one model from impacting the performance or security of another.
    • Reduced overhead: Despite offering VM-level isolation, microVMs are designed to be incredibly lightweight with minimal memory overhead and sub-second boot times. This means you can run a higher density of isolated AI models on a single machine without significant performance penalties.

    RamaLama and libkrun: A powerful combination

    RamaLama is now capable of harnessing the power of microVMs through libkrun, a dynamic library that allows programs to easily run processes in a partially isolated environment using KVM virtualization on Linux. The integration is seamless with Podman, allowing you to specify krun as your OCI runtime.

    This means running your AI models with enhanced microVM isolation is as simple as:

    ramalama serve --oci-runtime krun smollm:135m

    By adding --oci-runtime krun to your ramalama serve command, you're instructing Podman to launch the smollm:135m AI model not just in a container, but within its own lightweight microVM, leveraging the isolation capabilities of libkrun. This provides an additional layer of security beyond traditional containerization, making your AI deployments even more robust.

    Current limitations and future directions: GPU enablement

    At present, libkrun with Podman primarily supports CPU inferencing and is currently limited to Linux hosts. 

    However, we are actively working on GPU enablement for libkrun and RamaLama. Our goal is to extend the benefits of microVM isolation to GPU-accelerated AI workloads, allowing you to run even the most demanding models with the highest level of security and performance. This involves complex engineering to efficiently pass through and virtualize GPU resources to the microVMs, and we are committed to bringing this capability to RamaLama users in the near future.

    Conclusion

    RamaLama's commitment to secure AI model management continues to evolve. By integrating microVMs via libkrun and Podman --runtime krun, we're providing an even stronger foundation for running untrusted or sensitive AI models. While CPU-only inferencing is the current scope, our ongoing work on GPU enablement promises a future where robust, isolated, and GPU-accelerated AI model deployments are the norm.

    Stay tuned for more updates as we continue to push the boundaries of secure and efficient AI model deployment with RamaLama!

    Related Posts

    • How RamaLama runs AI models in isolation by default

    • Podman AI Lab and RamaLama unite for easier local AI

    • Unleashing multimodal magic with RamaLama

    • Distributed inference with vLLM

    • Simplify AI data integration with RamaLama and RAG

    • How RamaLama makes working with AI models boring

    Recent Posts

    • Create and enrich ServiceNow ITSM tickets with Ansible Automation Platform

    • Expand Model-as-a-Service for secure enterprise AI

    • OpenShift LACP bonding performance expectations

    • Build container images in CI/CD with Tekton and Buildpacks

    • How to deploy OpenShift AI & Service Mesh 3 on one cluster

    What’s up next?

    Discover how you can use the Podman AI Lab extension for Podman Desktop to work with large language models (LLMs) in a local environment.

    Start the activity
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    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