Documentation ¶
Index ¶
- type Delegator
- type PluginController
- func (c *PluginController) AddIPMasq(ip, deviceName string) error
- func (c *PluginController) DelIPMasq(ip, deviceName string) error
- func (c *PluginController) DelegateAdd(netconf map[string]interface{}) (types.Result, error)
- func (c *PluginController) DelegateDel(netconf map[string]interface{}) error
- type RuntimeConfig
- type WrapperConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Delegator ¶
type Delegator interface { DelegateAdd(delegatePlugin string, netconf []byte) (types.Result, error) DelegateDel(delegatePlugin string, netconf []byte) error }
func NewDelegator ¶
func NewDelegator() Delegator
type PluginController ¶
type PluginController struct { Delegator Delegator IPTables rules.IPTablesAdapter }
func (*PluginController) AddIPMasq ¶ added in v0.9.0
func (c *PluginController) AddIPMasq(ip, deviceName string) error
func (*PluginController) DelIPMasq ¶ added in v0.9.0
func (c *PluginController) DelIPMasq(ip, deviceName string) error
func (*PluginController) DelegateAdd ¶
func (c *PluginController) DelegateAdd(netconf map[string]interface{}) (types.Result, error)
func (*PluginController) DelegateDel ¶
func (c *PluginController) DelegateDel(netconf map[string]interface{}) error
type RuntimeConfig ¶ added in v0.19.0
type RuntimeConfig struct { PortMappings []garden.NetIn `json:"portMappings"` NetOutRules []garden.NetOutRule `json:"netOutRules"` }
type WrapperConfig ¶
type WrapperConfig struct { Datastore string `json:"datastore"` IPTablesLockFile string `json:"iptables_lock_file"` Delegate map[string]interface{} `json:"delegate"` HealthCheckURL string `json:"health_check_url"` InstanceAddress string `json:"instance_address"` DNSServers []string `json:"dns_servers"` IPTablesASGLogging bool `json:"iptables_asg_logging"` IPTablesC2CLogging bool `json:"iptables_c2c_logging"` IngressTag string `json:"ingress_tag"` VTEPName string `json:"vtep_name"` RuntimeConfig RuntimeConfig `json:"runtimeConfig,omitempty"` }
func LoadWrapperConfig ¶
func LoadWrapperConfig(bytes []byte) (*WrapperConfig, error)
Click to show internal directories.
Click to hide internal directories.