diff --git a/pkg/registry/controller_registry.go b/pkg/registry/controller_registry.go index 05bf8e40711..126b006d1a9 100644 --- a/pkg/registry/controller_registry.go +++ b/pkg/registry/controller_registry.go @@ -39,7 +39,8 @@ func (storage *ControllerRegistryStorage) List(*url.URL) (interface{}, error) { controllers, err := storage.registry.ListControllers() if err == nil { result = ReplicationControllerList{ - Items: controllers, + JSONBase: JSONBase{Kind: "cluster#replicationControllerList"}, + Items: controllers, } } return result, err