Skip to content

Commit 55807b7

Browse files
authored
Merge pull request kubernetes#80433 from zgfh/add_kube_config_doc_link
add link of kubeadm config doc
2 parents 3ea2807 + ca8d575 commit 55807b7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cmd/kubeadm/app/cmd/config.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,10 @@ func NewCmdConfigPrint(out io.Writer) *cobra.Command {
9696
cmd := &cobra.Command{
9797
Use: "print",
9898
Short: "Print configuration",
99-
Long: "This command prints configurations for subcommands provided.",
100-
RunE: cmdutil.SubCmdRunE("print"),
99+
Long: dedent.Dedent(`
100+
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"),
101103
}
102104
cmd.AddCommand(NewCmdConfigPrintInitDefaults(out))
103105
cmd.AddCommand(NewCmdConfigPrintJoinDefaults(out))

0 commit comments

Comments
 (0)