From d21c6fb381a49525c405b674223c306b33355b6a Mon Sep 17 00:00:00 2001 From: Jerry Huang Date: Fri, 31 Aug 2018 10:10:38 +0800 Subject: [PATCH] fix typos --- cmd/kubeadm/app/phases/upgrade/staticpods.go | 2 +- cmd/kubeadm/app/preflight/checks.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/kubeadm/app/phases/upgrade/staticpods.go b/cmd/kubeadm/app/phases/upgrade/staticpods.go index 900b39c98b..941391e130 100644 --- a/cmd/kubeadm/app/phases/upgrade/staticpods.go +++ b/cmd/kubeadm/app/phases/upgrade/staticpods.go @@ -511,7 +511,7 @@ func rollbackOldManifests(oldManifests map[string]string, origErr error, pathMgr return fmt.Errorf("couldn't upgrade control plane. kubeadm has tried to recover everything into the earlier state. Errors faced: %v", errs) } -// rollbackEtcdData rolls back the the content of etcd folder if something went wrong. +// rollbackEtcdData rolls back the content of etcd folder if something went wrong. // When the folder contents are successfully rolled back, nil is returned, otherwise an error is returned. func rollbackEtcdData(cfg *kubeadmapi.InitConfiguration, pathMgr StaticPodPathManager) error { backupEtcdDir := pathMgr.BackupEtcdDir() diff --git a/cmd/kubeadm/app/preflight/checks.go b/cmd/kubeadm/app/preflight/checks.go index 4c6a958b30..3fcc4a3332 100644 --- a/cmd/kubeadm/app/preflight/checks.go +++ b/cmd/kubeadm/app/preflight/checks.go @@ -501,7 +501,7 @@ func (subnet HTTPProxyCIDRCheck) Check() (warnings, errors []error) { return nil, nil } -// SystemVerificationCheck defines struct used for for running the system verification node check in test/e2e_node/system +// SystemVerificationCheck defines struct used for running the system verification node check in test/e2e_node/system type SystemVerificationCheck struct { IsDocker bool }