Documentation ¶
Index ¶
- func IsInvalidConfig(err error) bool
- func IsWrongTypeError(err error) bool
- type Config
- type Resource
- func (r *Resource) ApplyCreateChange(ctx context.Context, obj, createChange interface{}) error
- func (r *Resource) ApplyDeleteChange(ctx context.Context, obj, deleteChange interface{}) error
- func (r *Resource) ApplyUpdateChange(ctx context.Context, obj, updateChange interface{}) error
- func (r *Resource) GetCurrentState(ctx context.Context, obj interface{}) (interface{}, error)
- func (r *Resource) GetDesiredState(ctx context.Context, obj interface{}) (interface{}, error)
- func (r *Resource) Name() string
- func (r *Resource) NewDeletePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*crud.Patch, error)
- func (r *Resource) NewUpdatePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*crud.Patch, error)
- type StateGetter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsInvalidConfig ¶
IsInvalidConfig asserts invalidConfigError.
func IsWrongTypeError ¶
IsWrongTypeError asserts wrongTypeError.
Types ¶
type Config ¶
type Config struct { K8sClient kubernetes.Interface Logger micrologger.Logger StateGetter StateGetter Name string }
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
func (*Resource) ApplyCreateChange ¶
ApplyCreateChange ensures the Secret is created in the k8s api.
func (*Resource) ApplyDeleteChange ¶
func (*Resource) ApplyUpdateChange ¶
func (*Resource) GetCurrentState ¶
func (*Resource) GetDesiredState ¶
func (*Resource) NewDeletePatch ¶
type StateGetter ¶
type StateGetter interface { // GetCurrentState returns a current state of the system for the given // carnation of the observed Kubernetes object. GetCurrentState(ctx context.Context, obj interface{}) ([]*corev1.Secret, error) // GetDesiredState returns a desired state of the system for the given // carnation of the observed Kubernetes object. // // NOTE: This state may be different if the observed object is // created/updated or deleted. Deletion timestamp can be checked to // figure if the object is scheduled for deletion. GetDesiredState(ctx context.Context, obj interface{}) ([]*corev1.Secret, error) }
Click to show internal directories.
Click to hide internal directories.