File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,10 @@ import (
24
24
25
25
func (c * cli ) newAlphaCmd () * cobra.Command {
26
26
return & cobra.Command {
27
- Use : "alpha" ,
28
- Short : "Expose commands which are in experimental or early stages of development" ,
29
- Long : `Command group for commands which are either experimental or in early stages of development` ,
27
+ Use : "alpha" ,
28
+ SuggestFor : []string {"experimental" },
29
+ Short : "Expose commands which are in experimental or early stages of development" ,
30
+ Long : `Command group for commands which are either experimental or in early stages of development` ,
30
31
Example : fmt .Sprintf (`
31
32
# scaffolds webhook server
32
33
%s alpha webhook <params>` ,
Original file line number Diff line number Diff line change @@ -22,8 +22,9 @@ import (
22
22
23
23
func (c * cli ) newCreateCmd () * cobra.Command {
24
24
return & cobra.Command {
25
- Use : "create" ,
26
- Short : "Scaffold a Kubernetes API or webhook" ,
27
- Long : `Scaffold a Kubernetes API or webhook.` ,
25
+ Use : "create" ,
26
+ SuggestFor : []string {"new" },
27
+ Short : "Scaffold a Kubernetes API or webhook" ,
28
+ Long : `Scaffold a Kubernetes API or webhook.` ,
28
29
}
29
30
}
You can’t perform that action at this time.
0 commit comments