...

Source file src/github.com/openshift/api/network/v1/constants.go

Documentation: github.com/openshift/api/network/v1

     1  package v1
     2  
     3  const (
     4  	// Pod annotations
     5  	AssignMacvlanAnnotation = "pod.network.openshift.io/assign-macvlan"
     6  
     7  	// HostSubnet annotations. (Note: should be "hostsubnet.network.openshift.io/", but the incorrect name is now part of the API.)
     8  	AssignHostSubnetAnnotation = "pod.network.openshift.io/assign-subnet"
     9  	FixedVNIDHostAnnotation    = "pod.network.openshift.io/fixed-vnid-host"
    10  	NodeUIDAnnotation          = "pod.network.openshift.io/node-uid"
    11  
    12  	// NetNamespace annotations
    13  	MulticastEnabledAnnotation = "netnamespace.network.openshift.io/multicast-enabled"
    14  
    15  	// ChangePodNetworkAnnotation is an annotation on NetNamespace to request change of pod network
    16  	ChangePodNetworkAnnotation string = "pod.network.openshift.io/multitenant.change-network"
    17  )
    18  

View as plain text