Documentation ¶
Index ¶
- func NewEndpointInfo(baseInfo *k8sproxy.BaseEndpointInfo) k8sproxy.Endpoint
- func NewGroupCounter(groupAllocator openflow.GroupAllocator, groupIDUpdates chan<- string) *groupCounter
- func NewServiceInfo(port *corev1.ServicePort, service *corev1.Service, ...) k8sproxy.ServicePort
- type EndpointsMap
- type GroupCounter
- type ServiceInfo
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewEndpointInfo ¶
func NewEndpointInfo(baseInfo *k8sproxy.BaseEndpointInfo) k8sproxy.Endpoint
NewEndpointInfo returns a new k8sproxy.Endpoint which abstracts an endpointsInfo.
func NewGroupCounter ¶
func NewGroupCounter(groupAllocator openflow.GroupAllocator, groupIDUpdates chan<- string) *groupCounter
func NewServiceInfo ¶
func NewServiceInfo(port *corev1.ServicePort, service *corev1.Service, baseInfo *k8sproxy.BaseServiceInfo) k8sproxy.ServicePort
NewServiceInfo returns a new k8sproxy.ServicePort which abstracts a serviceInfo.
Types ¶
type EndpointsMap ¶
type EndpointsMap map[k8sproxy.ServicePortName]map[string]k8sproxy.Endpoint
type GroupCounter ¶
type GroupCounter interface { // AllocateIfNotExist generates a global unique group ID for a Service if the group ID has not been generated, then // return the group ID (newly allocated or already allocated). AllocateIfNotExist(svcPortName k8sproxy.ServicePortName, isEndpointsLocal bool) binding.GroupIDType // Get gets the group ID for the Service. Get(svcPortName k8sproxy.ServicePortName, isEndpointsLocal bool) (binding.GroupIDType, bool) // Recycle removes the Service group ID mapping. The recycled group ID can be reused. Recycle(svcPortName k8sproxy.ServicePortName, isEndpointsLocal bool) bool // GetAllGroupIDs gets all group IDs related to the Service. GetAllGroupIDs(svcNamespacedName string) []binding.GroupIDType }
GroupCounter generates and manages global unique group ID.
type ServiceInfo ¶
type ServiceInfo struct { *k8sproxy.BaseServiceInfo // cache for performance OFProtocol openflow.Protocol }
ServiceInfo is the internal struct for caching service information.
Click to show internal directories.
Click to hide internal directories.