type strategy …
var Strategy …
var _ …
var _ …
func (strategy) NamespaceScoped() bool { … }
func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) { … }
func (strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList { … }
func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { … }
func (strategy) Canonicalize(obj runtime.Object) { … }
func (strategy) AllowCreateOnUpdate() bool { … }
func (strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) { … }
func (strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList { … }
func (strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string { … }
func dropDisabledFields(secret *api.Secret, oldSecret *api.Secret) { … }
func (strategy) AllowUnconditionalUpdate() bool { … }
func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) { … }
func Matcher(label labels.Selector, field fields.Selector) pkgstorage.SelectionPredicate { … }
func SelectableFields(obj *api.Secret) fields.Set { … }
func warningsForSecret(secret *api.Secret) []string { … }