Documentation ¶
Overview ¶
© 2021 Red Hat, Inc. and others
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
© 2021 Red Hat, Inc. and others
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- Constants
- type Handler
- type HandlerBase
- func (ev *HandlerBase) Init() error
- func (ev *HandlerBase) LocalEndpointCreated(endpoint *submV1.Endpoint) error
- func (ev *HandlerBase) LocalEndpointRemoved(endpoint *submV1.Endpoint) error
- func (ev *HandlerBase) LocalEndpointUpdated(endpoint *submV1.Endpoint) error
- func (ev *HandlerBase) NodeCreated(node *k8sV1.Node) error
- func (ev *HandlerBase) NodeRemoved(node *k8sV1.Node) error
- func (ev *HandlerBase) NodeUpdated(node *k8sV1.Node) error
- func (ev *HandlerBase) RemoteEndpointCreated(endpoint *submV1.Endpoint) error
- func (ev *HandlerBase) RemoteEndpointRemoved(endpoint *submV1.Endpoint) error
- func (ev *HandlerBase) RemoteEndpointUpdated(endpoint *submV1.Endpoint) error
- func (ev *HandlerBase) Stop(uninstall bool) error
- func (ev *HandlerBase) TransitionToGateway() error
- func (ev *HandlerBase) TransitionToNonGateway() error
- type Registry
- func (er *Registry) AddHandlers(eventHandlers ...Handler) error
- func (er *Registry) GetName() string
- func (er *Registry) LocalEndpointCreated(endpoint *submV1.Endpoint) error
- func (er *Registry) LocalEndpointRemoved(endpoint *submV1.Endpoint) error
- func (er *Registry) LocalEndpointUpdated(endpoint *submV1.Endpoint) error
- func (er *Registry) NodeCreated(node *k8sV1.Node) error
- func (er *Registry) NodeRemoved(node *k8sV1.Node) error
- func (er *Registry) NodeUpdated(node *k8sV1.Node) error
- func (er *Registry) RemoteEndpointCreated(endpoint *submV1.Endpoint) error
- func (er *Registry) RemoteEndpointRemoved(endpoint *submV1.Endpoint) error
- func (er *Registry) RemoteEndpointUpdated(endpoint *submV1.Endpoint) error
- func (er *Registry) StopHandlers(uninstall bool) error
- func (er *Registry) TransitionToGateway() error
- func (er *Registry) TransitionToNonGateway() error
Constants ¶
const AnyNetworkPlugin = ""
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // Init is called once on startup to let the handler initialize any state it needs. Init() error // GetName returns the name of the event handler GetName() string // GetNetworkPlugin returns the kubernetes network plugin that this handler supports. GetNetworkPlugins() []string // Stop is called once during shutdown to let the handler perform any cleanup. The uninstall flag indicates // whether or not Submariner is being completely uninstalled from the system. Stop(uninstall bool) error // TransitionToNonGateway is called once for each transition of the local node from Gateway to a non-Gateway. TransitionToNonGateway() error // TransitionToGateway is called once for each transition of the local node from non-Gateway to a Gateway. TransitionToGateway() error // LocalEndpointCreated is called when an endpoint for the local cluster is created. LocalEndpointCreated(endpoint *submV1.Endpoint) error // LocalEndpointUpdated is called when an endpoint for the local cluster is updated. LocalEndpointUpdated(endpoint *submV1.Endpoint) error // LocalEndpointRemoved is called when an endpoint for the local cluster is removed. LocalEndpointRemoved(endpoint *submV1.Endpoint) error // RemoteEndpointCreated is called when an endpoint associated with a remote cluster is created. RemoteEndpointCreated(endpoint *submV1.Endpoint) error // RemoteEndpointUpdated is called when an endpoint associated with a remote cluster is updated. RemoteEndpointUpdated(endpoint *submV1.Endpoint) error // RemoteEndpointRemoved is called when an endpoint associated with a remote cluster is removed RemoteEndpointRemoved(endpoint *submV1.Endpoint) error // NodeCreated indicates when a node has been added to the cluster NodeCreated(node *k8sV1.Node) error // NodeUpdated indicates when a node has been updated in the cluster NodeUpdated(node *k8sV1.Node) error // NodeRemoved indicates when a node has been removed from the cluster NodeRemoved(node *k8sV1.Node) error }
type HandlerBase ¶
type HandlerBase struct { }
Base structure for event handlers that stubs out methods considered to be optional.
func (*HandlerBase) Init ¶
func (ev *HandlerBase) Init() error
func (*HandlerBase) LocalEndpointCreated ¶
func (ev *HandlerBase) LocalEndpointCreated(endpoint *submV1.Endpoint) error
func (*HandlerBase) LocalEndpointRemoved ¶
func (ev *HandlerBase) LocalEndpointRemoved(endpoint *submV1.Endpoint) error
func (*HandlerBase) LocalEndpointUpdated ¶
func (ev *HandlerBase) LocalEndpointUpdated(endpoint *submV1.Endpoint) error
func (*HandlerBase) NodeCreated ¶
func (ev *HandlerBase) NodeCreated(node *k8sV1.Node) error
func (*HandlerBase) NodeRemoved ¶
func (ev *HandlerBase) NodeRemoved(node *k8sV1.Node) error
func (*HandlerBase) NodeUpdated ¶
func (ev *HandlerBase) NodeUpdated(node *k8sV1.Node) error
func (*HandlerBase) RemoteEndpointCreated ¶
func (ev *HandlerBase) RemoteEndpointCreated(endpoint *submV1.Endpoint) error
func (*HandlerBase) RemoteEndpointRemoved ¶
func (ev *HandlerBase) RemoteEndpointRemoved(endpoint *submV1.Endpoint) error
func (*HandlerBase) RemoteEndpointUpdated ¶
func (ev *HandlerBase) RemoteEndpointUpdated(endpoint *submV1.Endpoint) error
func (*HandlerBase) Stop ¶
func (ev *HandlerBase) Stop(uninstall bool) error
func (*HandlerBase) TransitionToGateway ¶
func (ev *HandlerBase) TransitionToGateway() error
func (*HandlerBase) TransitionToNonGateway ¶
func (ev *HandlerBase) TransitionToNonGateway() error
type Registry ¶
type Registry struct {
// contains filtered or unexported fields
}
func NewRegistry ¶
NewRegistry creates a new registry with the given name, typically referencing the owner, to manage event Handlers that match the given networkPlugin name.
func (*Registry) AddHandlers ¶
AddHandlers adds the given event Handlers whose associated network plugin matches the network plugin associated with this registry. Non-matching Handlers are ignored. Handlers will be called in registration order.
func (*Registry) LocalEndpointCreated ¶
func (*Registry) LocalEndpointRemoved ¶
func (*Registry) LocalEndpointUpdated ¶
func (*Registry) RemoteEndpointCreated ¶
func (*Registry) RemoteEndpointRemoved ¶
func (*Registry) RemoteEndpointUpdated ¶
func (*Registry) StopHandlers ¶
func (*Registry) TransitionToGateway ¶
func (*Registry) TransitionToNonGateway ¶
Directories ¶
Path | Synopsis |
---|---|
© 2021 Red Hat, Inc.
|
© 2021 Red Hat, Inc. |
© 2021 Red Hat, Inc.
|
© 2021 Red Hat, Inc. |
© 2021 Red Hat, Inc.
|
© 2021 Red Hat, Inc. |