summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeads2k <deads@redhat.com>2016-10-24 10:58:05 -0400
committerdeads2k <deads@redhat.com>2016-10-26 16:10:41 -0400
commit6341ab3f763c2d7512f28718fc9ffb61855dea8f (patch)
tree48461cc69335145725d0ed6aa9bab9807ca88262
parent8a661d1ba595765989913fa0a8e005bc2d1cdf47 (diff)
handle non-generated client removal
-rw-r--r--api-group.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/api-group.md b/api-group.md
index e3f79764..1e039ac2 100644
--- a/api-group.md
+++ b/api-group.md
@@ -117,7 +117,7 @@ Documentation for other releases can be found at
1. clients:
- Currently we have structured (pkg/client/unversioned#ExperimentalClient, pkg/client/unversioned#Client) and unstructured (pkg/kubectl/resource#Helper) clients. The structured clients are not scalable because each of them implements specific interface, e.g., [here](../../pkg/client/unversioned/client.go#L32). Only the unstructured clients are scalable. We should either auto-generate the code for structured clients or migrate to use the unstructured clients as much as possible.
+ Currently we have structured (pkg/client/unversioned#ExperimentalClient, pkg/client/unversioned#Client) and unstructured (pkg/kubectl/resource#Helper) clients. The structured clients are not scalable because each of them implements specific interface, e.g., `[here]../../pkg/client/unversioned/client.go#L32`--fixed. Only the unstructured clients are scalable. We should either auto-generate the code for structured clients or migrate to use the unstructured clients as much as possible.
We should also move the unstructured client to pkg/client/.