2019-06-01 09:24:43 +08:00
|
|
|
# Note: this playbook can not run independently
|
2019-02-27 10:53:02 +08:00
|
|
|
|
2019-02-23 14:22:45 +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'" }
|
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'" }
|
2019-07-26 12:58:24 +08:00
|
|
|
tasks:
|
2019-07-26 15:19:51 +08:00
|
|
|
- name: 推送cluster-addon的离线镜像包
|
2019-07-26 12:58:24 +08:00
|
|
|
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"
|
2019-07-26 12:58:24 +08:00
|
|
|
- "{{ base_dir }}/down/traefik*.tar"
|
2019-07-26 15:19:51 +08:00
|
|
|
ignore_errors: true
|
|
|
|
|
2019-07-26 12:58:24 +08:00
|
|
|
- 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;"
|
2019-07-25 22:02:19 +08:00
|
|
|
ignore_errors: true
|
|
|
|
when: "CONTAINER_RUNTIME == 'docker'"
|
2019-07-26 15:19:51 +08:00
|
|
|
|
2019-07-26 12:58:24 +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;"
|
2019-07-25 22:02:19 +08:00
|
|
|
ignore_errors: true
|
|
|
|
when: "CONTAINER_RUNTIME == 'containerd'"
|