2019-02-27 10:53:02 +08:00
|
|
|
# Note: this playbook cann't run independently
|
|
|
|
# Usage: easzctl add-master 1.1.1.1
|
|
|
|
|
2019-02-24 10:22:12 +08:00
|
|
|
- hosts: "{{ NODE_TO_ADD }}"
|
2018-03-09 22:02:55 +08:00
|
|
|
roles:
|
2018-08-17 09:18:55 +08:00
|
|
|
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes'" }
|
2018-03-16 18:23:34 +08:00
|
|
|
- prepare
|
2019-05-18 16:48:58 +08:00
|
|
|
- { role: docker, when: "CONTAINER_RUNTIME == 'docker'" }
|
|
|
|
- { role: containerd, when: "CONTAINER_RUNTIME == 'containerd'" }
|
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
|
|
|
- { role: calico, when: "CLUSTER_NETWORK == 'calico'" }
|
2018-08-05 16:12:32 +08:00
|
|
|
- { role: cilium, when: "CLUSTER_NETWORK == 'cilium'" }
|
2018-03-18 22:51:05 +08:00
|
|
|
- { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" }
|
2018-06-14 09:39:47 +08:00
|
|
|
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" }
|
2019-05-22 14:31:29 +08:00
|
|
|
- { role: kube-ovn, when: "CLUSTER_NETWORK == 'kube-ovn'" }
|
2018-09-29 09:06:19 +08:00
|
|
|
#
|
2018-03-18 22:51:05 +08:00
|
|
|
tasks:
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Making master nodes SchedulingDisabled
|
2019-02-24 10:22:12 +08:00
|
|
|
shell: "{{ bin_dir }}/kubectl cordon {{ NODE_TO_ADD }} "
|
2018-09-15 11:27:33 +08:00
|
|
|
delegate_to: "{{ groups.deploy[0] }}"
|
2018-03-18 22:51:05 +08:00
|
|
|
when: DEPLOY_MODE != "allinone"
|
|
|
|
ignore_errors: true
|
|
|
|
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Setting master role name
|
2019-02-24 10:22:12 +08:00
|
|
|
shell: "{{ bin_dir }}/kubectl label node {{ NODE_TO_ADD }} kubernetes.io/role=master --overwrite"
|
2018-05-22 15:57:44 +08:00
|
|
|
ignore_errors: true
|
2018-09-15 11:27:33 +08:00
|
|
|
delegate_to: "{{ groups.deploy[0] }}"
|
2019-02-15 10:10:43 +08:00
|
|
|
|
2019-02-24 10:22:12 +08:00
|
|
|
# reconfigure and restart the haproxy service
|
|
|
|
- hosts: lb
|
|
|
|
roles:
|
2019-03-26 11:35:51 +08:00
|
|
|
- lb
|