1. 系统环境
操作系统:
CentOS 7
KV存储系统,用于集群的共享配置和服务发现(类似ZooKeeper):
etcd 3.1.0
容器管理工具:
Kubernetes 1.5.2
应用容器引擎
Docker 1.12.6
网络规划工具,统一分配集群Docker容器的虚拟IP,并实现服务之间通信:
Flannel 0.7.0
服务器 | 服务 |
---|---|
master | apiserver, controller-manager, scheduler |
node | flannel, docker, kubelet, kube-proxy |
etcd | etcd |
2. 基本环境配置
- 设置hosts
192.168.89.133
master
192.168.89.133
etcd
192.168.89.134
node1
PS:由于在虚拟机上面部署,所以只启动两台服务器,并且etcd和master运行在同一个物理机器上 - 关闭防火墙
systemctl stop firewalld.service
systemctl disable firewalld.service
PS:第一个命令关闭防火墙,第二个命令使开机不启动防火墙(永久关闭) - 永久关闭SELinux
修改/etc/selinux/config
SELINUX=disabled
- 重启机器
reboot
3. 安装和配置etcd
3.1 安装etcd
yum install etcd -y
3.2 配置etcd
修改/etc/etcd/etcd.conf
中的部分属性
ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:2379"
ETCD_ADVERTISE_CLIENT_URLS="http://etcd:2379"
PS:其中etcd
表示etcd服务器主机名
3.3 运行etcd
systemctl start etcd
systemctl enable etcd
3.4 配置etcd内网信息
etcdctl -C 192.168.89.133:2379 set /atomic.io/network/config '{"Network":"172.17.0.0/16"}'