# Note: this playbook can not run independently # Usage: easzctl add-node 1.1.1.1 - 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-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'" } post_tasks: - name: 推送所有离线镜像包 copy: src={{ base_dir }}/down/ dest=/opt/kube/images/ - name: 导入所有离线镜像 shell: ls /opt/kube/images/*.tar |while read n;do {{ bin_dir }}/docker load -i $n ;done ignore_errors: true when: "CONTAINER_RUNTIME == 'docker'" - name: 导入所有离线镜像 shell: ls /opt/kube/images/*.tar |while read n;do {{ bin_dir }}/ctr -n=k8s.io images import $n ;done ignore_errors: true when: "CONTAINER_RUNTIME == 'containerd'"