Documentation
¶
Index ¶
Constants ¶
View Source
const ( VlanStripTypeFilter = "filter" VlanStripTypeVlan = "vlan" )
how datapath handle vlan
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CNIConf ¶
type CNIConf struct {
cniTypes.NetConf
// HostVethPrefix is the veth for container prefix on host
HostVethPrefix string `json:"veth_prefix"`
// eniIPVirtualType is the ipvlan for container
ENIIPVirtualType string `json:"eniip_virtual_type"`
// HostStackCIDRs is a list of CIDRs, all traffic targeting these CIDRs will be redirected to host network stack
HostStackCIDRs []string `json:"host_stack_cidrs"`
DisableHostPeer bool `yaml:"disable_host_peer" json:"disable_host_peer"` // disable create peer for host and container. This will also disable ability for service
VlanStripType VlanStripType `yaml:"vlan_strip_type" json:"vlan_strip_type"` // used in multi ip mode, how datapath config vlan
// MTU is container and ENI network interface MTU
MTU int `json:"mtu"`
// Debug
Debug bool `json:"debug"`
}
CNIConf is the cni network config
type CheckConfig ¶
type CheckConfig struct {
DP DataPath
RecordPodEvent
NetNS ns.NetNS
HostVETHName string
ContainerIfName string
ContainerIPNet *terwayTypes.IPNetSet
HostIPSet *terwayTypes.IPNetSet
GatewayIP *terwayTypes.IPSet
ENIIndex int32 // phy device
TrunkENI bool
MTU int
DefaultRoute bool
MultiNetwork bool
}
type K8SArgs ¶
type K8SArgs struct {
cniTypes.CommonArgs
IP net.IP
K8S_POD_NAME cniTypes.UnmarshallableString // nolint
K8S_POD_NAMESPACE cniTypes.UnmarshallableString // nolint
K8S_POD_INFRA_CONTAINER_ID cniTypes.UnmarshallableString // nolint
}
K8SArgs is cni args of kubernetes
type RecordPodEvent ¶
type RecordPodEvent func(msg string)
type SetupConfig ¶
type SetupConfig struct {
DP DataPath
HostVETHName string
ContainerIfName string
ContainerIPNet *terwayTypes.IPNetSet
GatewayIP *terwayTypes.IPSet
MTU int
ENIIndex int
// disable create peer for exclusiveENI
DisableCreatePeer bool
// StripVlan or use vlan
StripVlan bool
Vid int
DefaultRoute bool
MultiNetwork bool
// add extra route in container
ExtraRoutes []types.Route
ServiceCIDR *terwayTypes.IPNetSet
HostIPSet *terwayTypes.IPNetSet
// ipvlan
HostStackCIDRs []*net.IPNet
Ingress uint64
Egress uint64
}
type TeardownCfg ¶
type TeardownCfg struct {
DP DataPath
HostVETHName string
ContainerIfName string
ContainerIPNet *terwayTypes.IPNetSet
}
Click to show internal directories.
Click to hide internal directories.