From 8cc8f60cdc3b6121c724d4901af2b4e0b421c6c7 Mon Sep 17 00:00:00 2001 From: Sergey Bondarenko Date: Mon, 19 Mar 2018 23:11:31 -0400 Subject: [PATCH] =?UTF-8?q?Fixed=20Cyrillic=20=D1=81=20in=20'kube-proxy-cm?= =?UTF-8?q?'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a typo (wrong character) in kube-proxy-cm.yaml - Cyrillic с (UTF-8 0x0441) was used instead of Latin c. --- docs/setup/independent/high-availability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/independent/high-availability.md b/docs/setup/independent/high-availability.md index f246182b3536e..f53bb0dba070e 100644 --- a/docs/setup/independent/high-availability.md +++ b/docs/setup/independent/high-availability.md @@ -577,7 +577,7 @@ Next provision and set up the worker nodes. To do this, you will need to provisi 1. Reconfigure kube-proxy to access kube-apiserver via the load balancer: ```shell - kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-сm.yaml + kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-cm.yaml sed -i 's#server:.*#server: https://:6443#g' kube-proxy-cm.yaml kubectl apply -f kube-proxy-cm.yaml --force # restart all kube-proxy pods to ensure that they load the new configmap