diff --git a/cmd/kubeadm/app/cmd/init.go b/cmd/kubeadm/app/cmd/init.go index bf1f0d9421a..8eb7467d45f 100644 --- a/cmd/kubeadm/app/cmd/init.go +++ b/cmd/kubeadm/app/cmd/init.go @@ -103,7 +103,7 @@ type initOptions struct { // compile-time assert that the local data object satisfies the phases data interface. var _ phases.InitData = &initData{} -// initData defines all the runtime information used when running the kubeadm init worklow; +// initData defines all the runtime information used when running the kubeadm init workflow; // this data is shared across all the phases that are included in the workflow. type initData struct { cfg *kubeadmapi.InitConfiguration diff --git a/cmd/kubeadm/app/cmd/join.go b/cmd/kubeadm/app/cmd/join.go index 914fa154640..a6ee510892d 100644 --- a/cmd/kubeadm/app/cmd/join.go +++ b/cmd/kubeadm/app/cmd/join.go @@ -133,7 +133,7 @@ type joinOptions struct { // compile-time assert that the local data object satisfies the phases data interface. var _ phases.JoinData = &joinData{} -// joinData defines all the runtime information used when running the kubeadm join worklow; +// joinData defines all the runtime information used when running the kubeadm join workflow; // this data is shared across all the phases that are included in the workflow. type joinData struct { cfg *kubeadmapi.JoinConfiguration diff --git a/cmd/kubeadm/app/cmd/reset.go b/cmd/kubeadm/app/cmd/reset.go index 400d1e669ea..52d7a989096 100644 --- a/cmd/kubeadm/app/cmd/reset.go +++ b/cmd/kubeadm/app/cmd/reset.go @@ -59,7 +59,7 @@ type resetOptions struct { kubeconfigPath string } -// resetData defines all the runtime information used when running the kubeadm reset worklow; +// resetData defines all the runtime information used when running the kubeadm reset workflow; // this data is shared across all the phases that are included in the workflow. type resetData struct { certificatesDir string