mirror of https://github.com/easzlab/kubeasz.git
25 lines
752 B
YAML
25 lines
752 B
YAML
# 重新配置启动 haproxy
|
||
- hosts: lb
|
||
tasks:
|
||
- name: 配置 haproxy
|
||
template: src={{ base_dir }}/roles/lb/templates/haproxy.cfg.j2 dest=/etc/haproxy/haproxy.cfg
|
||
- name: 重启haproxy服务
|
||
shell: systemctl enable haproxy && systemctl restart haproxy
|
||
|
||
- hosts: new-master
|
||
roles:
|
||
- prepare
|
||
- docker
|
||
- kube-master
|
||
- kube-node
|
||
# 根据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
|
||
|