Keepalived+HAProxy高可用集群K8S實(shí)現(xiàn)
本文采用Keepalived+HAProxy的方式構(gòu)建高可用集群。
當(dāng)你如果你有硬件負(fù)載均衡設(shè)備當(dāng)然更好了。
準(zhǔn)備環(huán)境:
| 主機(jī) | ip |
|---|---|
| k8s-master01 | 192.168.10.4 |
| k8s-master02 | 192.168.10.5 |
| k8s-master03 | 192.168.10.6 |
| VIP | 192.168.10.150 |
架構(gòu)圖

注意:master集群采用奇數(shù)臺(tái)數(shù),3、5、7…
所有節(jié)點(diǎn)都進(jìn)行hosts文件解析
tail -3 /etc/hosts 192.168.10.4 k8s-master01 192.168.10.5 k8s-master02 192.168.10.6 k8s-master03
所有節(jié)點(diǎn)都要安裝keepalived和haproxy軟件
yum -y install haproxy keepalived
修改haproxy配置文件(所有節(jié)點(diǎn)配置相同)
最好選擇2.x版本,當(dāng)然這個(gè)版本也不影響使用,只是功能沒(méi)有2.x版本多
vim /etc/haproxy/haproxy.cfg global maxconn 2000 ulimit-n 16384 log 127.0.0.1 local0 err stats timeout 30s defaults log global mode http option httplog timeout connect 5000 timeout client 50000 timeout server 50000 timeout http-request 15s timeout http-keep-alive 15s frontend monitor-in bind *:33305 mode http option httplog monitor-uri /monitor listen stats bind *:8006 mode http stats enable stats hide-version stats uri /stats stats refresh 30s stats realm Haproxy\ Statistics stats auth admin:admin frontend k8s-master bind 0.0.0.0:16443 bind 127.0.0.1:16443 mode tcp option tcplog tcp-request inspect-delay 5s default_backend k8s-master backend k8s-master mode tcp option tcplog option tcp-check balance roundrobin default-server inter 10s downinter 5s rise 2 fall 2 slowstart 60s maxconn 250 maxqueue 256 weight 100 server k8s-master01 192.168.10.4:6443 check server k8s-master02 192.168.10.5:6443 check server k8s-master03 192.168.10.6:6443 check
master01節(jié)點(diǎn)修改keepalived配置文件
vim /etc/keepalived/keepalived.conf
! Configuration File for keepalived
global_defs {
router_id LVS_DEVEL
}
vrrp_script chk_apiserver {
script "/etc/keepalived/check_apiserver.sh"
interval 2
weight -5
fall 3
rise 2
}
vrrp_instance VI_1 {
state MASTER
interface eth0
mcast_src_ip 192.168.10.4
virtual_router_id 51
priority 100
advert_int 2
authentication {
auth_type PASS
auth_pass K8SHA_KA_AUTH
}
virtual_ipaddress {
192.168.10.150/24
}
track_script {
chk_apiserver
}
master02節(jié)點(diǎn)修改keepalived配置文件
vim /etc/keepalived/keepalived.conf
! Configuration File for keepalived
global_defs {
router_id LVS_DEVEL
}
vrrp_script chk_apiserver {
script "/etc/keepalived/check_apiserver.sh"
interval 2
weight -5
fall 3
rise 2
}
vrrp_instance VI_1 {
state BACKUP
interface eth0
mcast_src_ip 192.168.10.5
virtual_router_id 51
priority 50
advert_int 2
authentication {
auth_type PASS
auth_pass K8SHA_KA_AUTH
}
virtual_ipaddress {
192.168.10.150/24
}
track_script {
chk_apiserver
}
}
master03節(jié)點(diǎn)修改keepalived配置文件
vim /etc/keepalived/keepalived.conf
! Configuration File for keepalived
global_defs {
router_id LVS_DEVEL
}
vrrp_script chk_apiserver {
script "/etc/keepalived/check_apiserver.sh"
interval 2
weight -5
fall 3
rise 2
}
vrrp_instance VI_1 {
state BACKUP
interface eth0
mcast_src_ip 192.168.10.6
virtual_router_id 51
priority 50
advert_int 2
authentication {
auth_type PASS
auth_pass K8SHA_KA_AUTH
}
virtual_ipaddress {
192.168.10.150/24
}
track_script {
chk_apiserver
}
}
所有節(jié)點(diǎn)創(chuàng)建健康檢查腳本
vim /etc/keepalived/check_apiserver.sh
#!/bin/bash
err=0
for k in $(seq 1 5)
do
check_code=$(pgrep haproxy)
if [[ $check_code == "" ]]; then
err=$(expr $err + 1)
sleep 5
continue
else
err=0
break
fi
done
if [[ $err != "0" ]]; then
echo "systemctl stop keepalived"
/usr/bin/systemctl stop keepalived
exit 1
else
exit 0
fi
啟動(dòng)haproxy與keepalived服務(wù)
systemctl daemon-reload systemctl enable --now haproxy systemctl enable --now keepalived
可以用ping和telnet命令測(cè)試一下vip的可用性
ping 192.168.10.150 PING 192.168.10.150 (192.168.10.150) 56(84) bytes of data. 64 bytes from 192.168.10.150: icmp_seq=1 ttl=64 time=1.60 ms 64 bytes from 192.168.10.150: icmp_seq=2 ttl=64 time=0.519 ms 64 bytes from 192.168.10.150: icmp_seq=3 ttl=64 time=0.874 ms 64 bytes from 192.168.10.150: icmp_seq=4 ttl=64 time=0.786 ms ^C --- 192.168.10.150 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 3009ms rtt min/avg/max/mdev = 0.519/0.946/1.606/0.403 ms telnet 192.168.10.150 16443 Trying 192.168.10.150... Connected to 192.168.10.150. Escape character is '^]'. Connection closed by foreign host.
再嘗試一下斷開(kāi)vip所在節(jié)點(diǎn)的keepalived,看ip是否漂移,如果vip漂移至另一節(jié)點(diǎn)則代表成功
可能難免有地方出錯(cuò),如果出錯(cuò)可以留言哈
以上就是Keepalived+HAProxy高可用集群K8S實(shí)現(xiàn)的詳細(xì)內(nèi)容,更多關(guān)于Keepalived+HAProxy實(shí)現(xiàn)K8S高可用集群的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
ubuntu服務(wù)器部署gitlab docker并配置nginx反向代理https訪問(wèn)的過(guò)程解析
這篇文章主要介紹了ubuntu服務(wù)器部署gitlab docker并配置nginx反向代理https訪問(wèn)的過(guò)程,本文給大家介紹的非常詳細(xì),感興趣的朋友跟隨小編一起看看吧2024-02-02
網(wǎng)站https訪問(wèn)是443端口還是433端口
一直以來(lái)都是服務(wù)器防火墻開(kāi)啟443端口就可以了,https是443還是433,就讓我困惑了一陣子,后來(lái)我搞清楚了,是443,每次加SSL,放行443端口就可以了,大部分時(shí)間沒(méi)出什么問(wèn)題2022-10-10
Vestacp免費(fèi)VPS主機(jī)控制面板的安裝與使用教程
Vestacp除了為我們搭建網(wǎng)站提供簡(jiǎn)潔易用的管理面板外,還為我們提供了免費(fèi)郵局功能和VPS性能監(jiān)控,幫助我們更好地管理VPS服務(wù)器,提供可視化的網(wǎng)站管理面板,非常適合多用戶使用。2017-07-07
服務(wù)器的rabbitmq的guest賬號(hào)登不進(jìn)去的解決步驟
這篇文章主要介紹了服務(wù)器的rabbitmq的guest賬號(hào)登不進(jìn)去的解決步驟,本文給大家介紹的非常詳細(xì),感興趣的朋友一起看看吧2024-07-07
Centos中VNC遠(yuǎn)程桌面程序的安裝與使用教程
這篇文章主要介紹了Centos中VNC遠(yuǎn)程桌面程序的安裝與使用的方法,較為詳細(xì)的分析了CentOS的VNC遠(yuǎn)程桌面程序安裝、配置、連接、啟動(dòng)等命令與相關(guān)操作技巧,需要的朋友可以參考下2016-07-07
Ubuntu通過(guò)Netplan配置網(wǎng)絡(luò)教程
這篇文章主要為大家介紹了Ubuntu通過(guò)Netplan配置網(wǎng)絡(luò)教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-10-10
微服務(wù)架構(gòu)之服務(wù)注冊(cè)與發(fā)現(xiàn)實(shí)踐示例詳解
這篇文章主要為大家介紹了微服務(wù)架構(gòu)之服務(wù)注冊(cè)與發(fā)現(xiàn)實(shí)踐的示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步早日升職加薪2022-01-01
什么是WebsitePanel(基于windows虛擬主機(jī)管理系統(tǒng))
一套比較容易上手的Windows系統(tǒng)中的虛擬主機(jī)管理系統(tǒng)。他可以同時(shí)管理多臺(tái)服務(wù)器,并且擁有一個(gè)簡(jiǎn)潔的、穩(wěn)定的統(tǒng)一管理界面2013-12-12

