1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00

cmd/openshift-install: add explain subcommand

This commit is contained in:
Abhinav Dahiya
2020-04-27 21:42:38 -07:00
parent a194303a0d
commit 6ae9df02c8
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package main
import (
"github.com/spf13/cobra"
"github.com/openshift/installer/pkg/explain"
)
func newExplainCmd() *cobra.Command {
return explain.NewCmd()
}

View File

@@ -55,6 +55,7 @@ func installerMain() {
newGraphCmd(),
newCompletionCmd(),
newMigrateCmd(),
newExplainCmd(),
} {
rootCmd.AddCommand(subCmd)
}