Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClientSetFunc ¶ added in v0.5.0
ClientSetFunc is used to generate client set of member cluster
type ObjectWatcher ¶
type ObjectWatcher interface {
Create(ctx context.Context, clusterName string, desireObj *unstructured.Unstructured) error
Update(ctx context.Context, clusterName string, desireObj, clusterObj *unstructured.Unstructured) (operationResult OperationResult, err error)
Delete(ctx context.Context, clusterName string, desireObj *unstructured.Unstructured) error
NeedsUpdate(clusterName string, desiredObj, clusterObj *unstructured.Unstructured) (bool, error)
}
ObjectWatcher manages operations for object dispatched to member clusters.
func NewObjectWatcher ¶
func NewObjectWatcher(kubeClientSet client.Client, restMapper meta.RESTMapper, clusterClientSetFunc ClientSetFunc, interpreter resourceinterpreter.ResourceInterpreter) ObjectWatcher
NewObjectWatcher returns an instance of ObjectWatcher
type OperationResult ¶ added in v1.14.0
type OperationResult string
OperationResult is the action result of an Update call.
const ( // OperationResultNone means that the update operation was not performed and the resource has not been changed. OperationResultNone OperationResult = "none" // OperationResultUnchanged means that the update operation was performed but the resource did not change. OperationResultUnchanged OperationResult = "unchanged" // OperationResultUpdated means that an existing resource is updated. OperationResultUpdated OperationResult = "updated" )
Click to show internal directories.
Click to hide internal directories.