From 4e4b4726a24ab2f7520e46dde446904a2a95f1ad Mon Sep 17 00:00:00 2001 From: Pick1a1username <20301273+Pick1a1username@users.noreply.github.com> Date: Sun, 17 Feb 2019 18:59:36 +0900 Subject: [PATCH] The chapter 'Bootstrapping the Kubernetes Control Plane' is updated. --- docs/08-bootstrapping-kubernetes-controllers.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/08-bootstrapping-kubernetes-controllers.md b/docs/08-bootstrapping-kubernetes-controllers.md index c9e6917..de82d98 100644 --- a/docs/08-bootstrapping-kubernetes-controllers.md +++ b/docs/08-bootstrapping-kubernetes-controllers.md @@ -1,13 +1,13 @@ # Bootstrapping the Kubernetes Control Plane -In this lab you will bootstrap the Kubernetes control plane across three compute instances and configure it for high availability. You will also create an external load balancer that exposes the Kubernetes API Servers to remote clients. The following components will be installed on each node: Kubernetes API Server, Scheduler, and Controller Manager. +In this chapter, you will bootstrap the Kubernetes control plane across three virtual machines and configure it for high availability. You will also create an load balancer that exposes the Kubernetes API Servers to remote clients. The following components will be installed on each node: Kubernetes API Server, Scheduler, and Controller Manager. ## Prerequisites -The commands in this lab must be run on each controller instance: `controller-1`, `controller-2`, and `controller-3`. Login to each controller instance: +The commands in this lab must be run on each controller node: `controller-1`, `controller-2`, and `controller-3`. Login to each controller node: ``` -$ ssh -i ~/.ssh/id_rsa-k8s.pub 10.240.0.11 +$ ssh -i ~/.ssh/id_rsa-k8s 10.240.0.11 ``` ### Running commands in parallel with tmux @@ -114,7 +114,7 @@ EOF Move the `kube-controller-manager` kubeconfig into place: ``` -sudo mv kube-controller-manager.kubeconfig /var/lib/kubernetes/ +$ sudo mv kube-controller-manager.kubeconfig /var/lib/kubernetes/ ``` Create the `kube-controller-manager.service` systemd unit file: @@ -204,7 +204,7 @@ $ { ### Verification ``` -kubectl get componentstatuses --kubeconfig admin.kubeconfig +$ kubectl get componentstatuses --kubeconfig admin.kubeconfig ``` ```