2018-03-16 18:23:34 +08:00
|
|
|
|
# 重新配置启动 haproxy
|
2018-03-09 22:02:55 +08:00
|
|
|
|
- hosts: lb
|
2018-03-16 18:23:34 +08:00
|
|
|
|
tasks:
|
|
|
|
|
- name: 配置 haproxy
|
2018-03-18 22:51:05 +08:00
|
|
|
|
template: src={{ base_dir }}/roles/lb/templates/haproxy.cfg.j2 dest=/etc/haproxy/haproxy.cfg
|
2018-03-16 18:23:34 +08:00
|
|
|
|
- name: 重启haproxy服务
|
2018-04-10 18:33:24 +08:00
|
|
|
|
shell: systemctl restart haproxy
|
2018-03-09 22:02:55 +08:00
|
|
|
|
|
2018-03-18 22:51:05 +08:00
|
|
|
|
- hosts: new-master
|
2018-03-09 22:02:55 +08:00
|
|
|
|
roles:
|
2018-03-16 18:23:34 +08:00
|
|
|
|
- prepare
|
2018-03-18 22:51:05 +08:00
|
|
|
|
- docker
|
2018-03-09 22:02:55 +08:00
|
|
|
|
- kube-master
|
2018-03-16 18:23:34 +08:00
|
|
|
|
- kube-node
|
2018-03-18 22:51:05 +08:00
|
|
|
|
# 根据hosts中配置,以下两种网络只会安装一种
|
|
|
|
|
- { role: calico, when: "CLUSTER_NETWORK == 'calico'" }
|
|
|
|
|
- { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" }
|
2018-06-14 09:39:47 +08:00
|
|
|
|
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" }
|
2018-03-18 22:51:05 +08:00
|
|
|
|
# 禁止业务 pod调度到 master节点
|
|
|
|
|
tasks:
|
|
|
|
|
- name: 禁止业务 pod调度到 master节点
|
2018-06-09 22:19:20 +08:00
|
|
|
|
shell: "{{ bin_dir }}/kubectl cordon {{ inventory_hostname }} "
|
2018-03-18 22:51:05 +08:00
|
|
|
|
when: DEPLOY_MODE != "allinone"
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
2018-05-22 15:57:44 +08:00
|
|
|
|
- name: 设置master节点role
|
2018-06-09 22:19:20 +08:00
|
|
|
|
shell: "{{ bin_dir }}/kubectl label node {{ inventory_hostname }} kubernetes.io/role=master --overwrite"
|
2018-05-22 15:57:44 +08:00
|
|
|
|
ignore_errors: true
|