Merge pull request #78304 from mysunshine92/fix-workflow

kubeadm: fix typos in  code comments
k3s-v1.15.3
Kubernetes Prow Robot 2019-05-26 21:17:49 -07:00 committed by GitHub
commit da31c50da1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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