type strategy …
func NewStrategy(typer runtime.ObjectTyper) strategy { … }
func (strategy) NamespaceScoped() bool { … }
func (strategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set { … }
func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) { … }
func (strategy) PrepareForUpdate(ctx context.Context, obj, old 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) AllowCreateOnUpdate() bool { … }
func (strategy) AllowUnconditionalUpdate() bool { … }
func (strategy) Canonicalize(obj 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 { … }
type statusStrategy …
func NewStatusStrategy(typer runtime.ObjectTyper) statusStrategy { … }
func (statusStrategy) NamespaceScoped() bool { … }
func (statusStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set { … }
func (statusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) { … }
func (statusStrategy) AllowCreateOnUpdate() bool { … }
func (statusStrategy) AllowUnconditionalUpdate() bool { … }
func (statusStrategy) Canonicalize(obj runtime.Object) { … }
func (statusStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList { … }
func (statusStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string { … }
func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) { … }
func MatchCustomResourceDefinition(label labels.Selector, field fields.Selector) storage.SelectionPredicate { … }
func CustomResourceDefinitionToSelectableFields(obj *apiextensions.CustomResourceDefinition) fields.Set { … }
func dropDisabledFields(newCRD *apiextensions.CustomResourceDefinition, oldCRD *apiextensions.CustomResourceDefinition) { … }
func dropOptionalOldSelfField(schema *apiextensions.JSONSchemaProps) { … }
func specHasOptionalOldSelf(spec *apiextensions.CustomResourceDefinitionSpec) bool { … }
func schemaHasOptionalOldSelf(s *apiextensions.JSONSchemaProps) bool { … }
func dropSelectableFields(spec *apiextensions.CustomResourceDefinitionSpec) { … }
func specHasSelectableFields(spec *apiextensions.CustomResourceDefinitionSpec) bool { … }