kubeasz/playbooks/22.addnode.yml

37 lines
1.5 KiB
YAML
Raw Normal View History

2019-06-01 09:24:43 +08:00
# Note: this playbook can not run independently
2019-02-27 10:53:02 +08:00
- hosts: "{{ NODE_TO_ADD }}"
2017-11-25 21:37:43 +08:00
roles:
2021-01-19 23:35:31 +08:00
- { role: os-harden, when: "OS_HARDEN|bool" }
2019-06-01 09:24:43 +08:00
- { role: chrony, when: "groups['chrony']|length > 0" }
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'" }
- kube-lb
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'" }
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" }
- { role: kube-ovn, when: "CLUSTER_NETWORK == 'kube-ovn'" }
tasks:
2019-07-26 15:19:51 +08:00
- name: 推送cluster-addon的离线镜像包
copy: src={{ item }} dest=/opt/kube/images/
with_fileglob:
- "{{ base_dir }}/down/coredns*.tar"
- "{{ base_dir }}/down/dashboard*.tar"
2019-11-26 19:07:46 +08:00
- "{{ base_dir }}/down/metrics-scraper*.tar"
2021-01-07 09:30:50 +08:00
- "{{ base_dir }}/down/metrics-server*.tar"
- "{{ base_dir }}/down/traefik*.tar"
2019-07-26 15:19:51 +08:00
ignore_errors: true
- name: 导入离线镜像(若执行失败,可忽略)
2021-01-19 20:20:05 +08:00
shell: "for image in $(echo /opt/kube/images/*.tar); do {{ bin_dir }}/docker load -i $image; done;"
ignore_errors: true
when: "CONTAINER_RUNTIME == 'docker'"
2019-07-26 15:19:51 +08:00
- name: 导入离线镜像(若执行失败,可忽略)
2021-01-19 20:20:05 +08:00
shell: "for image in $(echo /opt/kube/images/*.tar); do {{ bin_dir }}/ctr -n=k8s.io images import $image; done;"
ignore_errors: true
when: "CONTAINER_RUNTIME == 'containerd'"