Client wraps the dynamic + discovery clients required for CRD work.
| 21 | |
| 22 | // Client wraps the dynamic + discovery clients required for CRD work. |
| 23 | type Client struct { |
| 24 | dyn dynamic.Interface |
| 25 | mapper meta.RESTMapper |
| 26 | } |
| 27 | |
| 28 | // New constructs a Client from a rest.Config. |
| 29 | func New(cfg *rest.Config) (*Client, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected