Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Interface ¶
type Interface interface { // GetObject returns the object for which sync applies GetObject() interface{} // GetOwner returns the object owner or nil if object does not have one GetOwner() runtime.Object // Sync persists data into the external store Sync(context.Context) (SyncResult, error) }
Interface represents a syncer. A syncer persists an object (known as subject), into a store (kubernetes apiserver or generic stores) and records kubernetes events
func NewExternalSyncer ¶
func NewExternalSyncer(name string, owner runtime.Object, obj interface{}, syncFn func(context.Context, interface{}) (controllerutil.OperationResult, error)) Interface
NewExternalSyncer creates a new syncer which syncs a generic object persisting it's state into and external store The name is used for logging and event emitting purposes and should be an valid go identifier in upper camel case. (eg. GiteaRepo)
func NewObjectSyncer ¶
func NewObjectSyncer(name string, owner, obj runtime.Object, c client.Client, scheme *runtime.Scheme, syncFn controllerutil.MutateFn) Interface
NewObjectSyncer creates a new kubernetes.Object syncer for a given object with an owner and persists data using controller-runtime's CreateOrUpdate. The name is used for logging and event emitting purposes and should be an valid go identifier in upper camel case. (eg. MysqlStatefulSet)
type ObjectSyncer ¶
type ObjectSyncer struct { Owner runtime.Object Obj runtime.Object SyncFn controllerutil.MutateFn Name string Client client.Client Scheme *runtime.Scheme // contains filtered or unexported fields }
ObjectSyncer is a syncer.Interface for syncing kubernetes.Objects only by passing a SyncFn
func (*ObjectSyncer) GetObject ¶
func (s *ObjectSyncer) GetObject() interface{}
GetObject returns the ObjectSyncer subject
func (*ObjectSyncer) GetOwner ¶
func (s *ObjectSyncer) GetOwner() runtime.Object
GetOwner returns the ObjectSyncer owner
func (*ObjectSyncer) Sync ¶
func (s *ObjectSyncer) Sync(ctx context.Context) (SyncResult, error)
Sync does the actual syncing and implements the syncer.Inteface Sync method
type SyncResult ¶
type SyncResult struct { Operation controllerutil.OperationResult EventType string EventReason string EventMessage string }
SyncResult is a result of an Sync call
func (*SyncResult) SetEventData ¶
func (r *SyncResult) SetEventData(eventType, reason, message string)
SetEventData sets event data on an SyncResult
type WithoutOwner ¶
type WithoutOwner struct{}
WithoutOwner partially implements implements the syncer interface for the case the subject has no owner
func (*WithoutOwner) GetOwner ¶
func (*WithoutOwner) GetOwner() runtime.Object
GetOwner implementation of syncer interface for the case the subject has no owner