Documentation ¶
Overview ¶
portcache maintains the state about all current NodePortLocal port mappings for this Node and takes care of configuring the host accordingly.
Index ¶
- func NodePortProtoFormat(nodeport int, protocol string) string
- type LocalPortOpener
- type NodePortData
- type PortTable
- func (pt *PortTable) AddRule(podIP string, podPort int, protocol string) (int, error)
- func (pt *PortTable) CleanupAllEntries()
- func (pt *PortTable) DeleteRule(podIP string, podPort int, protocol string) error
- func (pt *PortTable) DeleteRulesForPod(podIP string) error
- func (pt *PortTable) GetDataForPodIP(ip string) []NodePortData
- func (pt *PortTable) GetEntry(ip string, port int, protocol string) *NodePortData
- func (pt *PortTable) RestoreRules(allNPLPorts []rules.PodNodePort, synced chan<- struct{}) error
- func (pt *PortTable) RuleExists(podIP string, podPort int, protocol string) bool
- type ProtocolSocketData
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NodePortProtoFormat ¶ added in v1.7.0
nodePortProtoFormat formats the nodeport, protocol to string port:protocol.
Types ¶
type LocalPortOpener ¶ added in v1.2.0
type NodePortData ¶
type NodePortData struct { NodePort int PodPort int PodIP string Protocols []ProtocolSocketData }
func (*NodePortData) CloseSockets ¶ added in v1.4.0
func (d *NodePortData) CloseSockets() error
func (*NodePortData) FindProtocol ¶ added in v1.4.0
func (d *NodePortData) FindProtocol(protocol string) *ProtocolSocketData
func (*NodePortData) ProtocolInUse ¶ added in v1.4.0
func (d *NodePortData) ProtocolInUse(protocol string) bool
type PortTable ¶
type PortTable struct { NodePortTable map[string]*NodePortData PodEndpointTable map[string]*NodePortData StartPort int EndPort int PortSearchStart int PodPortRules rules.PodPortRules LocalPortOpener LocalPortOpener // contains filtered or unexported fields }
func NewPortTable ¶
func (*PortTable) CleanupAllEntries ¶
func (pt *PortTable) CleanupAllEntries()
func (*PortTable) DeleteRule ¶
func (*PortTable) DeleteRulesForPod ¶ added in v1.4.0
func (*PortTable) GetDataForPodIP ¶
func (pt *PortTable) GetDataForPodIP(ip string) []NodePortData
func (*PortTable) GetEntry ¶
func (pt *PortTable) GetEntry(ip string, port int, protocol string) *NodePortData
func (*PortTable) RestoreRules ¶ added in v1.2.2
func (pt *PortTable) RestoreRules(allNPLPorts []rules.PodNodePort, synced chan<- struct{}) error
RestoreRules should be called at Antrea Agent startup to restore a set of NPL rules. It is non-blocking but takes a channel parameter - synced, which will be closed when the necessary rules have been restored successfully. No other operations should be performed on the PortTable until the channel is closed.
type ProtocolSocketData ¶ added in v1.4.0
type ProtocolSocketData struct { Protocol string State protocolSocketState // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.