Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Run multiple OpenStack Services on OpenShift with HCPs

May 5, 2026
Gil Rosenberg
Related topics:
Cloud servicesAutomation and managementKubernetesVirtualization
Related products:
Red Hat Advanced Cluster Management for KubernetesRed Hat OpenShiftRed Hat OpenShift Data FoundationRed Hat OpenShift Virtualization

    When we introduced Red Hat OpenStack Services on OpenShift in early 2025, our consultants and solutions architects noticed a recurring theme: organizations wanted to do more with less. This led to releasing support for multiple OpenStack services on a single Red Hat OpenShift cluster, a project we internally called MultiRHOSO phase 1. 

    But we didn't stop there. To provide even greater granularity and efficiency, we are now focusing on deploying OpenStack Services on OpenShift using hosted control planes (HCPs).

    What are hosted control planes?

    Hosted control planes (HCPs) are an OpenShift cluster deployment mechanism that utilizes an OpenShift hub cluster and multiple hosted clusters through a variety of infrastructure providers. This architecture enables the use of multiple independent OpenShift clusters sharing the same OpenShift infrastructure for the control plane (hub cluster different namespaces) with multiple options to deploy the hosted clusters' dataplane, such as virtual machines (OCPVirt) and bare metal nodes.

    Using hosted control planes with Red Hat OpenStack Services on OpenShift offers three distinct advantages:

    • Version isolation: Because each hosted cluster has isolated custom resource definitions (CRDs) and operators, you can deploy different versions or feature releases of OpenStack services without version conflicts.
    • Granular security: You can separate the cluster administrator persona across environments, reducing the attack surface and enabling finer-grained administration across versions.
    • Reduced hardware footprint: By using the Red Hat OpenShift Virtualization provider, you can maintain a consistent hardware footprint on the hub cluster while deploying multiple isolated OpenStack environments based on available resources.
    A diagram of the MultiRHOSO architecture with hosted clusters.
    Figure 1: High-level diagram of the MultiRHOSO architecture with hosted clusters.

    Hub cluster prerequisites and installation

    To set up multiple OpenStack clusters with hosted control planes, you must first install the hub cluster.

    Hub cluster requirements:

    • At least 3 nodes (master/worker compact cluster)
    • Minimum of 16 CPU cores and 32 GB of RAM per node and the requirements for each hosted cluster
    • A dedicated NIC or bond for network attachments
    • An NVMe or SSD-backed StorageClass for hosted cluster etcd pods
    • A wildcard-enabled ingress controller or a dedicated network per hosted cluster to expose APIs

    Step 1: Install required operators

    Install the following operators on the hub cluster:

    • Red Hat OpenShift Virtualization
    • Storage provider for etcd (e.g., LVM Storage)
    • Storage provider for VMs (e.g., Red Hat OpenShift Data Foundation)
    • MetalLB and NMState
    • Multicluster engine for Kubernetes or Red Hat Advanced Cluster Management for Kubernetes

    Step 2: Configure the network

    Create a NodeNetworkConfigurationPolicy (NNCP) for each node to define VLANs and bridges for isolated networks. In addition, action network attachment definitions are required in the hosted cluster namespace on the hub cluster to map the NNCP bridges to the networks required for OpenStack Services on OpenShift network isolation. You can do this either after the HCP cluster creation or during its creation (Figure 2). 

    A chart showing added net-attachments to the OCPVirt RHOSO hosted worker.
    Figure 2: Example of added net-attachments to the OCPVirt OpenStack Services on OpenShift hosted worker.

    Step 3: Deploy the hosted cluster

    Use the hcp command line interface (CLI) to create the hosted cluster using the kubevirt provider as in the following example.

    cluster using the kubevirt provider.
    hcp create cluster kubevirt \
     --name rhoso-hcp-0 \
     --node-pool-replicas 3 \
     --pull-secret /root/.docker/config.json \
     --additional-trust-bundle /root/hcpscripts/bastion-ocp4.crt \
     --memory 32Gi \
     --cores 16 \
     --etcd-storage-class=lvms-vg1 \
     --root-volume-storage-class=ocs-external-storagecluster-ceph-rbd \
     --root-volume-size 85 \
     --release-image=quay.io/openshift-release-dev/ocp-release:4.18.34-x86_64

    Step 4: Configure OpenStack services on the hosted cluster

    Once the hosted cluster is live, gain access using the generated kubeconfig and deploy the supporting operators, including the OpenStack operator. 

    Note: Disable the openstack-baremetal operator if no Metal3 operator is present in the OpenShift Virtualization hosted cluster provider.

    Final thoughts

    By combining OpenStack Services on OpenShift with hosted control planes, your organization can achieve a highly isolated, version-agnostic environment that maximizes your existing hardware. This deployment model empowers IT operations teams to do more with less by providing three distinct advantages: version isolation, granular security, and a smaller hardware footprint.

    Ultimately, this architecture allows IT operations teams to manage multiple development tiers or hundreds of edge locations with a consistent, automated experience. For more details, including configuring pre-provisioned data plane nodes, refer to the KBA.

    Related Posts

    • Deploy TAP-as-a-Service in OpenStack Services on OpenShift

    • Enable Firewall-as-a-Service in OpenStack Services on OpenShift

    • Improve efficiency with OpenStack Services on OpenShift

    • Deploy hosted control planes with OpenShift Virtualization

    Recent Posts

    • Debugging image mode with Red Hat OpenShift 4.20: A practical guide

    • EvalHub: Because "looks good to me" isn't a benchmark

    • SQL Server HA on RHEL: Meet Pacemaker HA Agent v2 (tech preview)

    • Deploy with confidence: Continuous integration and continuous delivery for agentic AI

    • Every layer counts: Defense in depth for AI agents with Red Hat AI

    What’s up next?

    Learning Path Feature image for Red Hat OpenShift

    Deployment of Red Hat OpenShift Data Foundation using GitOps

    Deploy Red Hat OpenShift Data Foundation (ODF), a unified data storage...
    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
    © 2026 Red Hat

    Red Hat legal and privacy links

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

    Chat Support

    Please log in with your Red Hat account to access chat support.