objectwatcher

package
v1.14.0-alpha.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 27, 2025 License: Apache-2.0 Imports: 18 Imported by: 0

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

type ClientSetFunc func(c string, client client.Client) (*util.DynamicClusterClient, error)

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"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL