summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-merge-robot <k8s.production.user@gmail.com>2016-04-04 12:55:00 -0700
committerk8s-merge-robot <k8s.production.user@gmail.com>2016-04-04 12:55:00 -0700
commit547328cff3aff9cb9348f2d0d1d4882685a5461c (patch)
tree7d93cb9540970ebaa543cc4388d59e6d3c867f0e
parent35bb505fbaefa807404d1516eb43d12fc4858279 (diff)
parent4d57a65504a4bc8b03fe6ae7a47d1f73ced78251 (diff)
Merge pull request #23786 from tnguyen-rh/fix-typo
Automatic merge from submit-queue Fix typo
-rw-r--r--generating-clientset.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/generating-clientset.md b/generating-clientset.md
index 1788627e..42851cc9 100644
--- a/generating-clientset.md
+++ b/generating-clientset.md
@@ -40,7 +40,7 @@ Client-gen is an automatic tool that generates [clientset](../../docs/proposals/
The workflow includes four steps:
- Marking API types with tags: in `pkg/apis/${GROUP}/${VERSION}/types.go`, mark the types (e.g., Pods) that you want to generate clients for with the `// +genclient=true` tag. If the resource associated with the type is not namespace scoped (e.g., PersistentVolume), you need to append the `nonNamespaced=true` tag as well.
-- Running the client-gen tool: you need to use the command line argument `--input` to specify the groups and versions of the APIs you want to generate clients for, client-gen will then look into `pkg/apis/${GROUP}/${VERSION}/types.go` and generate clients for the types you have marked with the `genlcient` tags. For example, run
+- Running the client-gen tool: you need to use the command line argument `--input` to specify the groups and versions of the APIs you want to generate clients for, client-gen will then look into `pkg/apis/${GROUP}/${VERSION}/types.go` and generate clients for the types you have marked with the `genclient` tags. For example, run
```
$ client-gen --input="api/v1,extensions/v1beta1" --clientset-name="my_release"