mirror of https://github.com/easzlab/kubeasz.git
14 lines
484 B
YAML
14 lines
484 B
YAML
# Note: this playbook cann't run independently
|
|
# Usage: easzctl add-node 1.1.1.1
|
|
|
|
- hosts: "{{ NODE_TO_ADD }}"
|
|
roles:
|
|
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes'" }
|
|
- prepare
|
|
- docker
|
|
- kube-node
|
|
- { role: calico, when: "CLUSTER_NETWORK == 'calico'" }
|
|
- { role: cilium, when: "CLUSTER_NETWORK == 'cilium'" }
|
|
- { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" }
|
|
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" }
|