Skip to content

Commit 5c1915a

Browse files
committed
Propagate error when creating CustomResourceStorage instead of panicking
1 parent 86db063 commit 5c1915a

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ func (r *crdHandler) getOrCreateServingInfoFor(uid types.UID, name string) (*crd
818818
return nil, fmt.Errorf("the server could not properly serve the list kind")
819819
}
820820

821-
storages[v.Name] = customresource.NewStorage(
821+
storages[v.Name], err = customresource.NewStorage(
822822
resource.GroupResource(),
823823
singularResource.GroupResource(),
824824
kind,
@@ -847,6 +847,9 @@ func (r *crdHandler) getOrCreateServingInfoFor(uid types.UID, name string) (*crd
847847
table,
848848
replicasPathInCustomResource,
849849
)
850+
if err != nil {
851+
return nil, err
852+
}
850853

851854
clusterScoped := crd.Spec.Scope == apiextensionsv1.ClusterScoped
852855

staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ type CustomResourceStorage struct {
4141
Scale *ScaleREST
4242
}
4343

44-
func NewStorage(resource schema.GroupResource, singularResource schema.GroupResource, kind, listKind schema.GroupVersionKind, strategy customResourceStrategy, optsGetter generic.RESTOptionsGetter, categories []string, tableConvertor rest.TableConvertor, replicasPathMapping managedfields.ResourcePathMappings) CustomResourceStorage {
44+
func NewStorage(resource schema.GroupResource, singularResource schema.GroupResource, kind, listKind schema.GroupVersionKind, strategy customResourceStrategy, optsGetter generic.RESTOptionsGetter, categories []string, tableConvertor rest.TableConvertor, replicasPathMapping managedfields.ResourcePathMappings) (CustomResourceStorage, error) {
4545
var storage CustomResourceStorage
4646
store := &genericregistry.Store{
4747
NewFunc: func() runtime.Object {
@@ -69,7 +69,7 @@ func NewStorage(resource schema.GroupResource, singularResource schema.GroupReso
6969
}
7070
options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: strategy.GetAttrs}
7171
if err := store.CompleteWithOptions(options); err != nil {
72-
panic(err) // TODO: Propagate error up
72+
return storage, err
7373
}
7474
storage.CustomResource = &REST{store, categories}
7575

@@ -97,7 +97,7 @@ func NewStorage(resource schema.GroupResource, singularResource schema.GroupReso
9797
}
9898
}
9999

100-
return storage
100+
return storage, nil
101101
}
102102

103103
// REST implements a RESTStorage for API services against etcd

staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func newStorage(t *testing.T) (customresource.CustomResourceStorage, *etcd3testi
9292
}
9393
table, _ := tableconvertor.New(headers, schema.GroupVersionKind{Group: "mygroup.example.com", Version: "v1beta1", Kind: "NoxuItemList"})
9494

95-
storage := customresource.NewStorage(
95+
storage, err := customresource.NewStorage(
9696
groupResource,
9797
groupResource,
9898
kind,
@@ -113,6 +113,9 @@ func newStorage(t *testing.T) (customresource.CustomResourceStorage, *etcd3testi
113113
table,
114114
managedfields.ResourcePathMappings{},
115115
)
116+
if err != nil {
117+
panic(err)
118+
}
116119

117120
return storage, server
118121
}

0 commit comments

Comments
 (0)