This is a cache of https://docs.okd.io/4.8/networking/ovn_kubernetes_network_provider/disabling-multicast.html. It is a snapshot of the page at 2025-08-25T00:28:45.604+0000.
Disabling multicast for a project - OVN-Kubernetes default CNI network provider | Networking | OKD 4.8
×

Disabling multicast between pods

You can disable multicast between pods for your project.

Prerequisites
  • Install the OpenShift CLI (oc).

  • You must log in to the cluster with a user that has the cluster-admin role.

Procedure
  • Disable multicast by running the following command:

    $ oc annotate namespace <namespace> \ (1)
        k8s.ovn.org/multicast-enabled-
    1 The namespace for the project you want to disable multicast for.

    You can alternatively apply the following YAML to delete the annotation:

    apiVersion: v1
    kind: Namespace
    metadata:
      name: <namespace>
      annotations:
        k8s.ovn.org/multicast-enabled: null