mirror of https://github.com/easzlab/kubeasz.git
26 lines
1000 B
YAML
26 lines
1000 B
YAML
# Note: this playbook cann't run independently
|
|
|
|
- hosts: "{{ NODE_TO_ADD }}"
|
|
roles:
|
|
- { role: chrony, when: "groups['chrony']|length > 0" }
|
|
- prepare
|
|
- { role: docker, when: "CONTAINER_RUNTIME == 'docker'" }
|
|
- { role: containerd, when: "CONTAINER_RUNTIME == 'containerd'" }
|
|
- kube-master
|
|
- 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'" }
|
|
- { role: kube-ovn, when: "CLUSTER_NETWORK == 'kube-ovn'" }
|
|
#
|
|
tasks:
|
|
- name: Making master nodes SchedulingDisabled
|
|
shell: "{{ base_dir }}/bin/kubectl cordon {{ NODE_TO_ADD }} "
|
|
when: "inventory_hostname not in groups['kube-node']"
|
|
ignore_errors: true
|
|
|
|
- name: Setting master role name
|
|
shell: "{{ base_dir }}/bin/kubectl label node {{ NODE_TO_ADD }} kubernetes.io/role=master --overwrite"
|
|
ignore_errors: true
|