From bd6f01207fb696e16bf5824360e51b460ff8fe45 Mon Sep 17 00:00:00 2001 From: "Shubin(Stan) Peng" <48232605+stanfordpeng@users.noreply.github.com> Date: Fri, 24 May 2024 20:02:53 +1000 Subject: [PATCH] Update docs/05-kubernetes-configuration-files.md Co-authored-by: Marijus Ravickas <989645+marijus-ravickas@users.noreply.github.com> --- docs/05-kubernetes-configuration-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/05-kubernetes-configuration-files.md b/docs/05-kubernetes-configuration-files.md index 52a1b47..f810572 100644 --- a/docs/05-kubernetes-configuration-files.md +++ b/docs/05-kubernetes-configuration-files.md @@ -188,7 +188,7 @@ Copy the `kubelet` and `kube-proxy` kubeconfig files to the node-0 instance: ```bash for host in node-0 node-1; do - ssh root@$host "mkdir /var/lib/kube-proxy" + ssh root@$host "mkdir -p /var/lib/{kube-proxy,kubelet}" scp kube-proxy.kubeconfig \ root@$host:/var/lib/kube-proxy/kubeconfig \