Skip to content

Commit

Permalink
安装新节点后推送07.cluster-addon.yml的镜像
Browse files Browse the repository at this point in the history
  • Loading branch information
gj19910723 authored and gjmzj committed Jul 26, 2019
1 parent 20a63ed commit 1e66e7e
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions tools/02.addnode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,22 @@
- { 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: 导入所有离线镜像
tasks:
- name: 创建文件夹/opt/kube/images
file: dest=/opt/kube/images state=directory
- name: 推送07.cluster-addon.yml中的镜像包
copy: src={{ item }} dest=/opt/kube/images/
with_fileglob:
- "{{ base_dir }}/down/coredns*.tar"
- "{{ base_dir }}/down/dashboard*.tar"
- "{{ base_dir }}/down/heapster*.tar"
- "{{ base_dir }}/down/metrics*.tar"
- "{{ base_dir }}/down/traefik*.tar"
- 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: 导入所有离线镜像
- 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'"

0 comments on commit 1e66e7e

Please sign in to comment.