Merge pull request #64233 from juanvallejo/jvallejo/move-describer-out-of-factory

Automatic merge from submit-queue (batch tested with PRs 63319, 64248, 64250, 63890, 64233). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

move Describer from factory

**Release note**:
```release-note
NONE
```

Moves `Describer` out of the object_mapping_factory

cc @soltysh @deads2k
This commit is contained in:
Kubernetes Submit Queue
2018-05-24 19:46:21 -07:00
committed by GitHub
8 changed files with 123 additions and 79 deletions

View File

@@ -34,7 +34,6 @@ import (
"k8s.io/kubernetes/pkg/kubectl/genericclioptions"
"k8s.io/kubernetes/pkg/kubectl/genericclioptions/resource"
"k8s.io/kubernetes/pkg/kubectl/validation"
"k8s.io/kubernetes/pkg/printers"
)
// Factory provides abstractions that allow the Kubectl command to be extended across multiple types
@@ -94,8 +93,6 @@ type ObjectMappingFactory interface {
ClientForMapping(mapping *meta.RESTMapping) (resource.RESTClient, error)
// Returns a RESTClient for working with Unstructured objects.
UnstructuredClientForMapping(mapping *meta.RESTMapping) (resource.RESTClient, error)
// Returns a Describer for displaying the specified RESTMapping type or an error.
Describer(mapping *meta.RESTMapping) (printers.Describer, error)
// Returns a schema that can validate objects stored on disk.
Validator(validate bool) (validation.Schema, error)