Notes and resources collected together to help learn Kubernetes. This will eventually become a tutorial and later a blog post for praqma website (hopefully!)
527
stars
223
forks
source link
load balancer picks up services list even if they do not have an external IP setup correctly #5
Have a look at the following output of loadbalancer.sh create
[root@lb LoadBalancer-Files]# loadbalancer.sh create
Beginning execution of main program - in create mode...
Acquiring program lock with PID: 27095 , in lock file: /var/lock/loadbalancer
Starting Sanity checks ...
Checking if kubernetes master 10.240.0.21 is reachable over SSH ...Yes!
Success connecting to Kubernetes master 10.240.0.21 on port 22.
Running command 'uptime' as user root on Kubernetes Master 10.240.0.21.
14:00:12 up 2:44, 1 user, load average: 0.00, 0.00, 0.00
Running command 'kubectl get cs' as user root on Kubernetes Master 10.240.0.21.
NAME STATUS MESSAGE ERROR
controller-manager Healthy ok
scheduler Healthy ok
etcd-0 Healthy {"health": "true"}
etcd-1 Healthy {"health": "true"}
Sanity checks completed successfully!
Following services were found with external IPs - on Kubernetes master ...
====================================================================================================
default nginx 10.32.0.230 <nodes> 80/TCP 3d
-----> Creating HA proxy section: default-nginx-80
listen default-nginx-80
bind <nodes>:80
server pod-1 10.200.0.4:80 check
server pod-2 10.200.0.5:80 check
server pod-3 10.200.0.6:80 check
server pod-4 10.200.0.7:80 check
server pod-5 10.200.0.8:80 check
server pod-6 10.200.1.10:80 check
. . .
. . .
Aligning IP addresses on eth0...
Adding IP address <nodes> to the interface eth0.
Error: an inet prefix is expected rather than "<nodes>/24".
Here is the final status of the network interface eth0 :
---------------------------------------------------------------------------------------
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 52:54:00:36:27:7d brd ff:ff:ff:ff:ff:ff
inet 10.240.0.200/24 brd 10.240.0.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::5054:ff:fe36:277d/64 scope link
valid_lft forever preferred_lft forever
---------------------------------------------------------------------------------------
. . .
. . .
Notice that the nginx service did not have any external ip, even then it got picked up by the loadbalancer script, and it tried to create an haproxy.conf file with incorrect "bind" entry. Also the ip addr add command failed.
Have a look at the following output of
loadbalancer.sh create
Notice that the nginx service did not have any external ip, even then it got picked up by the loadbalancer script, and it tried to create an haproxy.conf file with incorrect "bind" entry. Also the
ip addr add
command failed.