File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
func newAlphaCommand () * cobra.Command {
26
26
cmd := & cobra.Command {
27
27
Use : "alpha" ,
28
- Short : "Exposes commands which are in experimental or early stages of development" ,
28
+ Short : "Expose commands which are in experimental or early stages of development" ,
29
29
Long : `Command group for commands which are either experimental or in early stages of development` ,
30
30
Example : `
31
31
# scaffolds webhook server
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ import (
24
24
func newDocsCmd () * cobra.Command {
25
25
return & cobra.Command {
26
26
Use : "docs" ,
27
- Short : "Generate API reference docs. Coming soon. " ,
28
- Long : `updates vendor dependencies. Coming soon. ` ,
27
+ Short : "Generate API reference docs. Coming soon" ,
28
+ Long : `Update vendor dependencies. Coming soon` ,
29
29
Run : func (cmd * cobra.Command , args []string ) {
30
30
fmt .Println ("Coming soon." )
31
31
},
Original file line number Diff line number Diff line change @@ -83,8 +83,8 @@ Typical project lifecycle:
83
83
84
84
kubebuilder create api --group <group> --version <version> --kind <Kind>
85
85
86
- create resource will prompt the user for if it should scaffold the Resource and / or Controller. To only
87
- scaffold a Controller for an existing Resource, select "n" for Resource. To only define
86
+ Create resource will prompt the user for if it should scaffold the Resource and / or Controller. To only
87
+ scaffold a Controller for an existing Resource, select "n" for Resource. To only define
88
88
the schema for a Resource without writing a Controller, select "n" for Controller.
89
89
90
90
After the scaffold is written, api will run make on the project.
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ import (
28
28
func newVendorUpdateCmd () * cobra.Command {
29
29
return & cobra.Command {
30
30
Use : "update" ,
31
- Short : "updates vendor dependencies. " ,
32
- Long : `updates vendor dependencies. ` ,
31
+ Short : "Update vendor dependencies" ,
32
+ Long : `Update vendor dependencies` ,
33
33
Example : `Update the vendor dependencies:
34
34
kubebuilder update vendor
35
35
` ,
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ func (v Version) Print() {
59
59
func NewVersionCmd () * cobra.Command {
60
60
return & cobra.Command {
61
61
Use : "version" ,
62
- Short : "Print the kubebuilder version. " ,
63
- Long : `Print the kubebuilder version. ` ,
62
+ Short : "Print the kubebuilder version" ,
63
+ Long : `Print the kubebuilder version` ,
64
64
Example : `kubebuilder version` ,
65
65
Run : runVersion ,
66
66
}
You can’t perform that action at this time.
0 commit comments