Documentation
¶
Index ¶
- Constants
- 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{}) (*controller.Patch, error)
- func (r *Resource) NewUpdatePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*controller.Patch, error)
Constants ¶
View Source
const (
// Name is the identifier of the resource.
Name = "namespacev13"
)
Variables ¶
This section is empty.
Functions ¶
func IsInvalidConfig ¶
IsInvalidConfig asserts invalidConfigError.
func IsWrongTypeError ¶
IsWrongTypeError asserts wrongTypeError.
Types ¶
type Config ¶
type Config struct { BaseClusterConfig cluster.Config Logger micrologger.Logger ProjectName string Tenant tenantcluster.Interface ToClusterGuestConfigFunc func(obj interface{}) (v1alpha1.ClusterGuestConfig, error) ToClusterObjectMetaFunc func(obj interface{}) (apismetav1.ObjectMeta, error) }
Config represents the configuration used to create a new namespace resource.
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource implements the namespace resource.
func (*Resource) ApplyCreateChange ¶
func (*Resource) ApplyDeleteChange ¶
ApplyDeleteChange is a no-op because the namespace in the tenant cluster is deleted with the tenant cluster resources.
func (*Resource) ApplyUpdateChange ¶
ApplyUpdateChange is a no-op because the namespace in the tenant cluster is not updated.
func (*Resource) GetCurrentState ¶
func (*Resource) GetDesiredState ¶
func (*Resource) NewDeletePatch ¶
func (r *Resource) NewDeletePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*controller.Patch, error)
NewDeletePatch is a no-op because the namespace in the tenant cluster is deleted with the tenant cluster resources.
func (*Resource) NewUpdatePatch ¶
Click to show internal directories.
Click to hide internal directories.