oopsHideProperCommand

This commit is contained in:
jregan
2020-10-16 17:57:25 -07:00
parent 495f6df973
commit 3d1376bbbc
2 changed files with 1 additions and 1 deletions

View File

@@ -21,7 +21,6 @@ func NewCmdInfo(w io.Writer) *cobra.Command {
Run: func(cmd *cobra.Command, args []string) {
fmt.Fprintln(w, kubernetesapi.Info)
},
Hidden: true,
}
return &infoCmd

View File

@@ -18,6 +18,7 @@ func NewCmdOpenAPI(w io.Writer) *cobra.Command {
Use: "openapi",
Short: "Commands for interacting with the OpenAPI data",
Example: `kustomize openapi info`,
Hidden: true,
}
openApiCmd.AddCommand(info.NewCmdInfo(w))