K8s/Playlist: Support full CRUD from k8s to existing storage (#75709)

This commit is contained in:
Ryan McKinley
2023-11-01 12:32:24 -07:00
committed by GitHub
parent a59588a62e
commit e3641d925c
10 changed files with 349 additions and 19 deletions

View File

@@ -39,11 +39,11 @@ func (genericStrategy) Validate(ctx context.Context, obj runtime.Object) field.E
func (genericStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { return nil }
func (genericStrategy) AllowCreateOnUpdate() bool {
return false
return true
}
func (genericStrategy) AllowUnconditionalUpdate() bool {
return false
return true
}
func (genericStrategy) Canonicalize(obj runtime.Object) {}