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:
11
cmd/openshift-install/explain.go
Normal file
11
cmd/openshift-install/explain.go
Normal 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()
|
||||
}
|
||||
@@ -55,6 +55,7 @@ func installerMain() {
|
||||
newGraphCmd(),
|
||||
newCompletionCmd(),
|
||||
newMigrateCmd(),
|
||||
newExplainCmd(),
|
||||
} {
|
||||
rootCmd.AddCommand(subCmd)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user