2019-02-27 10:53:02 +08:00
|
|
|
# Note: this playbook cann't run independently
|
|
|
|
# Usage: easzctl add-node 1.1.1.1
|
|
|
|
|
2019-02-23 14:22:45 +08:00
|
|
|
- hosts: "{{ NODE_TO_ADD }}"
|
2017-11-25 21:37:43 +08:00
|
|
|
roles:
|
2018-08-17 09:18:55 +08:00
|
|
|
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes'" }
|
2017-11-25 21:37:43 +08:00
|
|
|
- prepare
|
2019-05-18 16:48:58 +08:00
|
|
|
- { role: docker, when: "CONTAINER_RUNTIME == 'docker'" }
|
|
|
|
- { role: containerd, when: "CONTAINER_RUNTIME == 'containerd'" }
|
2017-11-25 21:37:43 +08:00
|
|
|
- kube-node
|
2018-03-08 16:24:52 +08:00
|
|
|
- { role: calico, when: "CLUSTER_NETWORK == 'calico'" }
|
2018-08-05 16:12:32 +08:00
|
|
|
- { role: cilium, when: "CLUSTER_NETWORK == 'cilium'" }
|
2018-03-08 16:24:52 +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'" }
|