From 4f301cc97aed1a5f8908344edff63e0b67bbfb20 Mon Sep 17 00:00:00 2001 From: d-kuro Date: Mon, 11 Mar 2019 13:12:46 +0900 Subject: [PATCH] Fix typo --- cmd/kubeadm/app/phases/certs/certs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/phases/certs/certs.go b/cmd/kubeadm/app/phases/certs/certs.go index be9fd770e8c..158a6b734b3 100644 --- a/cmd/kubeadm/app/phases/certs/certs.go +++ b/cmd/kubeadm/app/phases/certs/certs.go @@ -184,7 +184,7 @@ func LoadCertificateAuthority(pkiDir string, baseName string) (*x509.Certificate // writeCertificateAuthorithyFilesIfNotExist write a new certificate Authority to the given path. // If there already is a certificate file at the given path; kubeadm tries to load it and check if the values in the -// existing and the eexpected certificate equals. If they do; kubeadm will just skip writing the file as it's up-to-date, +// existing and the expected certificate equals. If they do; kubeadm will just skip writing the file as it's up-to-date, // otherwise this function returns an error. func writeCertificateAuthorithyFilesIfNotExist(pkiDir string, baseName string, caCert *x509.Certificate, caKey *rsa.PrivateKey) error {