Update 08-bootstrapping-kubernetes-controllers.md

pull/482/head
Mumshad Mannambeth 2019-08-10 18:00:24 +08:00 committed by GitHub
parent 28c9198e62
commit 358fd23331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -218,12 +218,12 @@ In this section you will provision an external load balancer to front the Kubern
```
#Install HAProxy
sudo apt-get update && sudo apt-get install -y haproxy
loadbalancer# sudo apt-get update && sudo apt-get install -y haproxy
```
```
cat <<EOF | sudo tee /etc/haproxy/haproxy.cfg
loadbalancer# cat <<EOF | sudo tee /etc/haproxy/haproxy.cfg
frontend kubernetes
bind 192.168.5.30:6443
option tcplog
@ -240,7 +240,7 @@ EOF
```
```
sudo service haproxy restart
loadbalancer# sudo service haproxy restart
```
### Verification