We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6b70f commit ca8d575Copy full SHA for ca8d575
cmd/kubeadm/app/cmd/config.go
@@ -96,8 +96,10 @@ func NewCmdConfigPrint(out io.Writer) *cobra.Command {
96
cmd := &cobra.Command{
97
Use: "print",
98
Short: "Print configuration",
99
- Long: "This command prints configurations for subcommands provided.",
100
- RunE: cmdutil.SubCmdRunE("print"),
+ Long: dedent.Dedent(`
+ This command prints configurations for subcommands provided.
101
+ For details, see: https://godoc.org/k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta2`),
102
+ RunE: cmdutil.SubCmdRunE("print"),
103
}
104
cmd.AddCommand(NewCmdConfigPrintInitDefaults(out))
105
cmd.AddCommand(NewCmdConfigPrintJoinDefaults(out))
0 commit comments