Documentation ¶
Index ¶
- Constants
- func NewLocalPodSpecFromDel(request *pb.DelRequest) *storage.LocalPodSpec
- type NetworkPod
- type PodNSNotFoundErr
- type Server
- func (s *Server) ActivateStrictRPF(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
- func (s *Server) Add(ctx context.Context, request *pb.AddRequest) (*pb.AddReply, error)
- func (s *Server) AddHostPort(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) error
- func (s *Server) AddRPFRoutes(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
- func (s *Server) AddVppInterface(podSpec *storage.LocalPodSpec, doHostSideConf bool) (tunTapSwIfIndex uint32, err error)
- func (s *Server) CreatePodRPFVRF(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
- func (s *Server) CreatePodVRF(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
- func (s *Server) CreateVRFRoutesToPod(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
- func (s *Server) DeactivateStrictRPF(podSpec *storage.LocalPodSpec) error
- func (s *Server) Del(ctx context.Context, request *pb.DelRequest) (*pb.DelReply, error)
- func (s *Server) DelHostPort(podSpec *storage.LocalPodSpec)
- func (s *Server) DelVppInterface(podSpec *storage.LocalPodSpec)
- func (s *Server) DeletePodVRF(podSpec *storage.LocalPodSpec) error
- func (s *Server) DeleteVRFRoutesToPod(podSpec *storage.LocalPodSpec)
- func (s *Server) ForceAddingNetworkDefinition(networkDefinition *watchers.NetworkDefinition)
- func (s *Server) ParseDefaultIfType(podSpec *storage.LocalPodSpec, ifType storage.VppInterfaceType) (err error)
- func (s *Server) ParseEnableDisableAnnotation(value string) (bool, error)
- func (s *Server) ParsePodAnnotations(podSpec *storage.LocalPodSpec, annotations map[string]string) (err error)
- func (s *Server) ParsePortMappingAnnotation(podSpec *storage.LocalPodSpec, ifType storage.VppInterfaceType, value string) (err error)
- func (s *Server) ParsePortSpec(value string) (ifPortConfigs *storage.LocalIfPortConfigs, err error)
- func (s *Server) ParseSpoofAddressAnnotation(value string) ([]cnet.IPNet, error)
- func (s *Server) ParseTrueFalseAnnotation(value string) (bool, error)
- func (s *Server) RemovePuntRoutes(podSpec *storage.LocalPodSpec, swIfIndex uint32)
- func (s *Server) RoutePblPortsPodInterface(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack, swIfIndex uint32, ...) (err error)
- func (s *Server) RoutePodInterface(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack, swIfIndex uint32, ...) error
- func (s *Server) ServeCNI(t *tomb.Tomb) error
- func (s *Server) SetFelixConfig(felixConfig *felixConfig.Config)
- func (s *Server) SetupPuntRoutes(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack, swIfIndex uint32) (err error)
- func (s *Server) UnroutePblPortsPodInterface(podSpec *storage.LocalPodSpec, swIfIndex uint32)
- func (s *Server) UnroutePodInterface(podSpec *storage.LocalPodSpec, swIfIndex uint32)
Constants ¶
View Source
const ( CalicoAnnotationPrefix string = "cni.projectcalico.org/" VppAnnotationPrefix string = "cni.projectcalico.org/vpp." MemifPortAnnotation string = "memif.ports" TunTapPortAnnotation string = "tuntap.ports" Memifl3Annotation string = "memif.l3" TunTapl3Annotation string = "tuntap.l3" VclAnnotation string = "vcl" SpoofAnnotation string = "allowedSourcePrefixes" )
Variables ¶
This section is empty.
Functions ¶
func NewLocalPodSpecFromDel ¶
func NewLocalPodSpecFromDel(request *pb.DelRequest) *storage.LocalPodSpec
Types ¶
type NetworkPod ¶
type PodNSNotFoundErr ¶
type PodNSNotFoundErr struct {
// contains filtered or unexported fields
}
func (PodNSNotFoundErr) Error ¶
func (e PodNSNotFoundErr) Error() string
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
func NewCNIServer ¶
Serve runs the grpc server for the Calico CNI backend API
func (*Server) ActivateStrictRPF ¶
func (s *Server) ActivateStrictRPF(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
func (*Server) AddHostPort ¶
func (s *Server) AddHostPort(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) error
func (*Server) AddRPFRoutes ¶
func (s *Server) AddRPFRoutes(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
func (*Server) AddVppInterface ¶
func (s *Server) AddVppInterface(podSpec *storage.LocalPodSpec, doHostSideConf bool) (tunTapSwIfIndex uint32, err error)
AddVppInterface performs the networking for the given config and IPAM result
func (*Server) CreatePodRPFVRF ¶
func (s *Server) CreatePodRPFVRF(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
func (*Server) CreatePodVRF ¶
func (s *Server) CreatePodVRF(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
func (*Server) CreateVRFRoutesToPod ¶
func (s *Server) CreateVRFRoutesToPod(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack) (err error)
func (*Server) DeactivateStrictRPF ¶
func (s *Server) DeactivateStrictRPF(podSpec *storage.LocalPodSpec) error
func (*Server) DelHostPort ¶
func (s *Server) DelHostPort(podSpec *storage.LocalPodSpec)
func (*Server) DelVppInterface ¶
func (s *Server) DelVppInterface(podSpec *storage.LocalPodSpec)
CleanUpVPPNamespace deletes the devices in the network namespace.
func (*Server) DeletePodVRF ¶
func (s *Server) DeletePodVRF(podSpec *storage.LocalPodSpec) error
func (*Server) DeleteVRFRoutesToPod ¶
func (s *Server) DeleteVRFRoutesToPod(podSpec *storage.LocalPodSpec)
func (*Server) ForceAddingNetworkDefinition ¶
func (s *Server) ForceAddingNetworkDefinition(networkDefinition *watchers.NetworkDefinition)
ForceAddingNetworkDefinition will add another NetworkDefinition to this CNI server. The usage is mainly for testing purposes.
func (*Server) ParseDefaultIfType ¶
func (s *Server) ParseDefaultIfType(podSpec *storage.LocalPodSpec, ifType storage.VppInterfaceType) (err error)
func (*Server) ParseEnableDisableAnnotation ¶
func (*Server) ParsePodAnnotations ¶
func (*Server) ParsePortMappingAnnotation ¶
func (s *Server) ParsePortMappingAnnotation(podSpec *storage.LocalPodSpec, ifType storage.VppInterfaceType, value string) (err error)
func (*Server) ParsePortSpec ¶
func (s *Server) ParsePortSpec(value string) (ifPortConfigs *storage.LocalIfPortConfigs, err error)
func (*Server) ParseSpoofAddressAnnotation ¶
func (*Server) ParseTrueFalseAnnotation ¶
func (*Server) RemovePuntRoutes ¶
func (s *Server) RemovePuntRoutes(podSpec *storage.LocalPodSpec, swIfIndex uint32)
func (*Server) RoutePblPortsPodInterface ¶
func (s *Server) RoutePblPortsPodInterface(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack, swIfIndex uint32, isL3 bool) (err error)
func (*Server) RoutePodInterface ¶
func (s *Server) RoutePodInterface(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack, swIfIndex uint32, isL3 bool) error
func (*Server) SetFelixConfig ¶
func (s *Server) SetFelixConfig(felixConfig *felixConfig.Config)
func (*Server) SetupPuntRoutes ¶
func (s *Server) SetupPuntRoutes(podSpec *storage.LocalPodSpec, stack *vpplink.CleanupStack, swIfIndex uint32) (err error)
func (*Server) UnroutePblPortsPodInterface ¶
func (s *Server) UnroutePblPortsPodInterface(podSpec *storage.LocalPodSpec, swIfIndex uint32)
func (*Server) UnroutePodInterface ¶
func (s *Server) UnroutePodInterface(podSpec *storage.LocalPodSpec, swIfIndex uint32)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.