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

VMware Antrea is now Generally Available on OpenShift

August 3, 2023
Vivien Wang
Related topics:
ContainersOperators
Related products:
Red Hat OpenShiftRed Hat OpenShift Container Platform

    The VMware Antrea Operator, a network cluster operator for deploying Antrea as the default cluster network in Red Hat OpenShift, is now certified and available as a container network interface (CNI) plug-in and can be deployed on OpenShift 4.9, 4.10, 4.11, and 4.12.

    The container network interface (CNI) badge represents a distinct classification in the Red Hat OpenShift certification ecosystem and is reserved for networking solutions that integrate with OpenShift via a CNI plug-in.

    To qualify for this badge, the CNI plug-in must be deployed and managed through an operator. Partners are required to complete the relevant operator certification and successfully pass a series of end-to-end tests. Once approved, the operator is published in the Red Hat Ecosystem Catalog and can be utilized by customers and partners.

    Overview of Antrea

    The Antrea operator is responsible for deploying and managing the Antrea CNI plugin in an OpenShift cluster. The Antrea operator leverages a dedicated Custom Resource Definition (CRD) called AntreaInstall to store configuration parameters specific to both the antrea-controller and antrea-agent. By continuously monitoring the AntreaInstall CR, the operator automatically applies any relevant configuration changes and efficiently restarts the affected pods, ensuring smooth updates to the Antrea components.

    Antrea features

    • Antrea seamlessly integrates into OpenShift clusters through the Antrea operator, enabling the dynamic application of configuration changes to all operand components. Additionally, it maintains continuous monitoring of the OpenShift network CRD, accurately detecting alterations in available pod and service networking CIDRs.
    • The Antrea operator offers a simplified configuration process by centralizing all configuration parameters for each Antrea component into a single location. This streamlined approach ensures that configurations are efficiently propagated to their respective components without any complications.
    • Constant monitoring of components is a key feature of the Antrea operator. The cluster operator CR provides timely reports on the status of pods across deployments and daemonsets, promptly identifying and reporting any configuration errors that might hinder the correct implementation of changes on operands.

    How to deploy VMware Antrea on OpenShift

    The Antrea operator should be deployed in the early phases of cluster deployment for OpenShift 4 cluster. Its primary role is to monitor the cluster network configuration CR (network.config.openshift.io/v1). By doing so, it can keep the container network CIDRs and service network CIDRs used by Antrea up to date and properly configured.

    Step 1: Generate the install-config.yaml using the openshift-install command:

    $ openshift-install --dir=MY_CLUSTER create install-config

    Step 2: Update the install-config.yaml and make sure to change the networkType to "antrea" (case insensitive). Set container network CIDRs (clusterNetwork) and service network CIDRs (serviceNetwork).

    Step 3: Create manifest files:

    $ openshift-install --dir=MY_CLUSTER create manifests

    Step 4: Copy operator YAML files from deploy/ to MY_CLUSTER/manifests. Modify operator.antrea.vmware.com_v1_antreainstall_cr.yaml to configure Antrea and set the desired image version.

    Step 5: Generate ignition configuration files:

    $ openshift-install --dir=MY_CLUSTER create ignition-configs.

    Include the bootstrap ignition file in the terraform tfvars. Proceed with installing Openshift 4 cluster on vSphere using terraform.

    Step 6: Initiate cluster bootstrap and wait for the process to complete.

    Configuring your cluster network

    Initially, the cluster network configuration is defined in the install-config.yaml file. To update the clusterNetwork and serviceNetwork settings, users can apply changes through the network.config.openshift.io CRD in manifests/cluster-network-02-config.yml.

    Here is a sample configuration:

    apiVersion: config.openshift.io/v1
    kind: Network
    metadata:
      name: cluster
    spec:
      networkType: antrea
      clusterNetwork:
      - cidr: 10.10.0.0/14
      serviceNetwork:
      - 172.30.0.0/16

    Learn more

    For more information on the available installation processes and how to prepare a cluster installation for users, please consult the Selecting a cluster installation method and preparing it for users section in the Red Hat OpenShift Container Platform documentation. These instructions provide comprehensive guidance on choosing the appropriate installation method and preparing the cluster environment for users.

    If you wish to leverage the OperatorHub for installation, the following links provide detailed information:

    • Installing from OperatorHub using the web console
    • Installing from OperatorHub using the CLI

    To learn more about Certified OpenShift CNI Plug-ins and the third-party CNI plug-ins that have been certified by Red Hat for use with the OpenShift Container Platform, please refer to this document.

    Learn more about Antrea:

    • Antrea Operator For Kubernetes
    • VMware Container Networking with Antrea Documentation
    Last updated: September 19, 2023

    Related Posts

    • Using Quiver with AMQ on Red Hat OpenShift Container Platform

    • Where can I find REST API client libraries for OpenShift?

    • Change deployments on the fly in OpenShift 4.8

    • Access your Developer Sandbox from the command line

    Recent Posts

    • What's new in OpenShift Container Platform system management

    • Claude as your performance analysis partner

    • LogAn: Large-scale log analysis with small language models

    • stalld’s BPF Backend: Breaking Free from debugfs

    • Running AI inference on Rebellions ATOM NPU with Red Hat AI

    What’s up next?

    GitOps has become a standard in deploying applications to Kubernetes, and many companies are adopting the methodology for their DevOps and cloud-native strategy. Download the GitOps Cookbook for useful recipes and examples for successful hands-on applications development and deployment with GitOps.

    Download the GitOps Cookbook
    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.