From 1f6ae1dcc395655d12475155613780195121b0d7 Mon Sep 17 00:00:00 2001 From: bogard1203 Date: Mon, 2 Dec 2019 16:09:04 +0800 Subject: [PATCH] Deleted duplicate sentence and corrected typo (#17902) * Corrected the typo of 'chck' with 'check' * Removed the duplicate sentence --- .../en/docs/tasks/administer-cluster/kubeadm/kubeadm-certs.md | 2 -- content/en/docs/tasks/extend-kubectl/kubectl-plugins.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/content/en/docs/tasks/administer-cluster/kubeadm/kubeadm-certs.md b/content/en/docs/tasks/administer-cluster/kubeadm/kubeadm-certs.md index 5b496da0728ae..bbb7af3d83cdc 100644 --- a/content/en/docs/tasks/administer-cluster/kubeadm/kubeadm-certs.md +++ b/content/en/docs/tasks/administer-cluster/kubeadm/kubeadm-certs.md @@ -200,8 +200,6 @@ Certificates can be renewed with `kubeadm alpha certs renew --csr-only`. As with `kubeadm init`, an output directory can be specified with the `--csr-dir` flag. To use the new certificates, copy the signed certificate and private key into the PKI directory (by default `/etc/kubernetes/pki`) -A CSR contains a certificate's name, domain(s), and IPs, but it does not specify usages. - A CSR contains a certificate's name, domains, and IPs, but it does not specify usages. It is the responsibility of the CA to specify [the correct cert usages][cert-table] when issuing a certificate. diff --git a/content/en/docs/tasks/extend-kubectl/kubectl-plugins.md b/content/en/docs/tasks/extend-kubectl/kubectl-plugins.md index 77fede9863e37..f7e88feec64f7 100644 --- a/content/en/docs/tasks/extend-kubectl/kubectl-plugins.md +++ b/content/en/docs/tasks/extend-kubectl/kubectl-plugins.md @@ -168,7 +168,7 @@ sudo chmod +x ./kubectl-foo-bar-baz # "install" your plugin by moving it to a directory in your $PATH sudo mv ./kubectl-foo-bar-baz /usr/local/bin -# chck that kubectl recognizes your plugin +# check that kubectl recognizes your plugin kubectl plugin list ```