Unverified Commit 4ff782df authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #66657 from liangwenguo/third_person

Automatic merge from submit-queue (batch tested with PRs 66491, 66587, 66856, 66657, 66923). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. fix grammar error: the predicate verb should be singular. **What this PR does / why we need it**: **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
parents d7634dcf 59a6e658
...@@ -28,7 +28,7 @@ import ( ...@@ -28,7 +28,7 @@ import (
// depends on the generated defaults. // depends on the generated defaults.
) )
// NewKubeadmCommand return cobra.Command to run kubeadm command // NewKubeadmCommand returns cobra.Command to run kubeadm command
func NewKubeadmCommand(in io.Reader, out, err io.Writer) *cobra.Command { func NewKubeadmCommand(in io.Reader, out, err io.Writer) *cobra.Command {
cmds := &cobra.Command{ cmds := &cobra.Command{
Use: "kubeadm", Use: "kubeadm",
......
...@@ -63,7 +63,7 @@ var ( ...@@ -63,7 +63,7 @@ var (
`+cmdutil.AlphaDisclaimer), kubeadmconstants.GetStaticPodFilepath(kubeadmconstants.KubeScheduler, kubeadmconstants.GetStaticPodDirectory())) `+cmdutil.AlphaDisclaimer), kubeadmconstants.GetStaticPodFilepath(kubeadmconstants.KubeScheduler, kubeadmconstants.GetStaticPodDirectory()))
) )
// NewCmdControlplane return main command for Controlplane phase // NewCmdControlplane returns main command for Controlplane phase
func NewCmdControlplane() *cobra.Command { func NewCmdControlplane() *cobra.Command {
cmd := &cobra.Command{ cmd := &cobra.Command{
Use: "controlplane", Use: "controlplane",
......
...@@ -45,7 +45,7 @@ var ( ...@@ -45,7 +45,7 @@ var (
`) `)
) )
// NewCmdEtcd return main command for Etcd phase // NewCmdEtcd returns main command for Etcd phase
func NewCmdEtcd() *cobra.Command { func NewCmdEtcd() *cobra.Command {
cmd := &cobra.Command{ cmd := &cobra.Command{
Use: "etcd", Use: "etcd",
......
...@@ -75,7 +75,7 @@ var ( ...@@ -75,7 +75,7 @@ var (
`) `)
) )
// NewCmdKubeConfig return main command for kubeconfig phase // NewCmdKubeConfig returns main command for kubeconfig phase
func NewCmdKubeConfig(out io.Writer) *cobra.Command { func NewCmdKubeConfig(out io.Writer) *cobra.Command {
cmd := &cobra.Command{ cmd := &cobra.Command{
Use: "kubeconfig", Use: "kubeconfig",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment