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-05-19 22:40:41 +08:00
|
|
|
|
- { role: os-harden, when: "OS_HARDEN is defined and OS_HARDEN == 'yes'" }
|
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'" }
|
|
|
|
|
# 禁止业务 pod调度到 master节点
|
|
|
|
|
tasks:
|
|
|
|
|
- name: 禁止业务 pod调度到 master节点
|
|
|
|
|
shell: "{{ bin_dir }}/kubectl cordon {{ NODE_IP }} "
|
|
|
|
|
when: DEPLOY_MODE != "allinone"
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
2018-05-22 15:57:44 +08:00
|
|
|
|
- name: 设置master节点role
|
|
|
|
|
shell: "{{ bin_dir }}/kubectl label node {{ NODE_IP }} kubernetes.io/role=master --overwrite"
|
|
|
|
|
ignore_errors: true
|