Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ParseTunnelInterfaceConfig ¶ added in v0.3.0
func ParseTunnelInterfaceConfig( portData *ovsconfig.OVSPortData, portConfig *interfacestore.OVSPortConfig) *interfacestore.InterfaceConfig
ParseTunnelInterfaceConfig initializes and returns an InterfaceConfig struct for a tunnel interface. It reads tunnel type, remote IP, IPSec PSK from the OVS interface options, and NodeName from the OVS port external_ids. nil is returned, if the OVS port and interface configurations are not valid for a tunnel interface.
Types ¶
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller is responsible for setting up necessary IP routes and Openflow entries for inter-node traffic.
func NewNodeRouteController ¶
func NewNodeRouteController( kubeClient clientset.Interface, informerFactory informers.SharedInformerFactory, client openflow.Client, ovsBridgeClient ovsconfig.OVSBridgeClient, interfaceStore interfacestore.InterfaceStore, config *types.NodeConfig, tunnelType ovsconfig.TunnelType, ipsecPSK string, ) *Controller
NewNodeRouteController instantiates a new Controller object which will process Node events and ensure connectivity between different Nodes.
func (*Controller) Run ¶
func (c *Controller) Run(stopCh <-chan struct{})
Run will create defaultWorkers workers (go routines) which will process the Node events from the workqueue.