2018-10-12 13:30:19 +08:00
|
|
|
|
## 02-安装etcd集群
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
2019-06-09 10:58:01 +08:00
|
|
|
|
kuberntes 集群使用 etcd 存储所有数据,是最重要的组件之一,注意 etcd集群需要奇数个节点(1,3,5...),本文档使用3个节点做集群。
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
2018-12-25 14:05:42 +08:00
|
|
|
|
请在另外窗口打开[roles/etcd/tasks/main.yml](../../roles/etcd/tasks/main.yml) 文件,对照看以下讲解内容。
|
2017-11-30 22:44:45 +08:00
|
|
|
|
|
|
|
|
|
### 下载etcd/etcdctl 二进制文件、创建证书目录
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
2018-12-25 14:05:42 +08:00
|
|
|
|
https://github.com/etcd-io/etcd/releases
|
|
|
|
|
|
|
|
|
|
### 创建etcd证书请求 [etcd-csr.json.j2](../../roles/etcd/templates/etcd-csr.json.j2)
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
{
|
|
|
|
|
"CN": "etcd",
|
|
|
|
|
"hosts": [
|
|
|
|
|
"127.0.0.1",
|
2018-06-09 22:19:20 +08:00
|
|
|
|
"{{ inventory_hostname }}"
|
2017-11-30 22:23:19 +08:00
|
|
|
|
],
|
|
|
|
|
"key": {
|
|
|
|
|
"algo": "rsa",
|
|
|
|
|
"size": 2048
|
|
|
|
|
},
|
|
|
|
|
"names": [
|
|
|
|
|
{
|
|
|
|
|
"C": "CN",
|
|
|
|
|
"ST": "HangZhou",
|
|
|
|
|
"L": "XS",
|
|
|
|
|
"O": "k8s",
|
|
|
|
|
"OU": "System"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
2018-03-18 18:25:38 +08:00
|
|
|
|
+ etcd使用对等证书,hosts 字段必须指定授权使用该证书的 etcd 节点 IP
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
|
|
|
|
### 创建证书和私钥
|
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
cd /etc/etcd/ssl && {{ bin_dir }}/cfssl gencert \
|
|
|
|
|
-ca={{ ca_dir }}/ca.pem \
|
|
|
|
|
-ca-key={{ ca_dir }}/ca-key.pem \
|
|
|
|
|
-config={{ ca_dir }}/ca-config.json \
|
|
|
|
|
-profile=kubernetes etcd-csr.json | {{ bin_dir }}/cfssljson -bare etcd
|
|
|
|
|
```
|
|
|
|
|
|
2018-12-25 14:05:42 +08:00
|
|
|
|
### 创建etcd 服务文件 [etcd.service.j2](../../roles/etcd/templates/etcd.service.j2)
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
|
|
|
|
先创建工作目录 /var/lib/etcd/
|
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=Etcd Server
|
|
|
|
|
After=network.target
|
|
|
|
|
After=network-online.target
|
|
|
|
|
Wants=network-online.target
|
|
|
|
|
Documentation=https://github.com/coreos
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=notify
|
|
|
|
|
WorkingDirectory=/var/lib/etcd/
|
|
|
|
|
ExecStart={{ bin_dir }}/etcd \
|
|
|
|
|
--name={{ NODE_NAME }} \
|
|
|
|
|
--cert-file=/etc/etcd/ssl/etcd.pem \
|
|
|
|
|
--key-file=/etc/etcd/ssl/etcd-key.pem \
|
|
|
|
|
--peer-cert-file=/etc/etcd/ssl/etcd.pem \
|
|
|
|
|
--peer-key-file=/etc/etcd/ssl/etcd-key.pem \
|
|
|
|
|
--trusted-ca-file={{ ca_dir }}/ca.pem \
|
|
|
|
|
--peer-trusted-ca-file={{ ca_dir }}/ca.pem \
|
2018-06-09 22:19:20 +08:00
|
|
|
|
--initial-advertise-peer-urls=https://{{ inventory_hostname }}:2380 \
|
|
|
|
|
--listen-peer-urls=https://{{ inventory_hostname }}:2380 \
|
|
|
|
|
--listen-client-urls=https://{{ inventory_hostname }}:2379,http://127.0.0.1:2379 \
|
|
|
|
|
--advertise-client-urls=https://{{ inventory_hostname }}:2379 \
|
2017-11-30 22:23:19 +08:00
|
|
|
|
--initial-cluster-token=etcd-cluster-0 \
|
|
|
|
|
--initial-cluster={{ ETCD_NODES }} \
|
|
|
|
|
--initial-cluster-state=new \
|
|
|
|
|
--data-dir=/var/lib/etcd
|
|
|
|
|
Restart=on-failure
|
|
|
|
|
RestartSec=5
|
|
|
|
|
LimitNOFILE=65536
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
```
|
|
|
|
|
+ 完整参数列表请使用 `etcd --help` 查询
|
2018-10-12 13:30:19 +08:00
|
|
|
|
+ 注意etcd 即需要服务器证书也需要客户端证书,这里为方便使用一个peer 证书代替两个证书,更多证书相关请阅读 [01-创建CA证书和环境配置](01-CA_and_prerequisite.md)
|
2017-11-30 22:23:19 +08:00
|
|
|
|
+ `--initial-cluster-state` 值为 `new` 时,`--name` 的参数值必须位于 `--initial-cluster` 列表中;
|
|
|
|
|
|
|
|
|
|
### 启动etcd服务
|
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
systemctl daemon-reload && systemctl enable etcd && systemctl start etcd
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 验证etcd集群状态
|
|
|
|
|
|
|
|
|
|
+ systemctl status etcd 查看服务状态
|
|
|
|
|
+ journalctl -u etcd 查看运行日志
|
2017-11-30 22:44:45 +08:00
|
|
|
|
+ 在任一 etcd 集群节点上执行如下命令
|
2017-11-30 22:23:19 +08:00
|
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
|
# 根据hosts中配置设置shell变量 $NODE_IPS
|
|
|
|
|
export NODE_IPS="192.168.1.1 192.168.1.2 192.168.1.3"
|
2018-08-22 23:07:07 +08:00
|
|
|
|
for ip in ${NODE_IPS}; do
|
2018-05-06 09:08:09 +08:00
|
|
|
|
ETCDCTL_API=3 etcdctl \
|
2017-11-30 22:23:19 +08:00
|
|
|
|
--endpoints=https://${ip}:2379 \
|
|
|
|
|
--cacert=/etc/kubernetes/ssl/ca.pem \
|
|
|
|
|
--cert=/etc/etcd/ssl/etcd.pem \
|
|
|
|
|
--key=/etc/etcd/ssl/etcd-key.pem \
|
|
|
|
|
endpoint health; done
|
|
|
|
|
```
|
|
|
|
|
预期结果:
|
|
|
|
|
|
|
|
|
|
``` text
|
|
|
|
|
https://192.168.1.1:2379 is healthy: successfully committed proposal: took = 2.210885ms
|
|
|
|
|
https://192.168.1.2:2379 is healthy: successfully committed proposal: took = 2.784043ms
|
|
|
|
|
https://192.168.1.3:2379 is healthy: successfully committed proposal: took = 3.275709ms
|
|
|
|
|
```
|
|
|
|
|
三台 etcd 的输出均为 healthy 时表示集群服务正常。
|
2017-12-18 17:35:51 +08:00
|
|
|
|
|
2018-10-12 13:30:19 +08:00
|
|
|
|
[后一篇](03-install_docker.md)
|