安装新节点后推送07.cluster-addon.yml的镜像

pull/658/head
gj19910723 2019-07-26 12:58:24 +08:00 committed by jmgao
parent 20a63edf48
commit 1e66e7e6ef
1 changed files with 13 additions and 5 deletions

View File

@ -13,14 +13,22 @@
- { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" } - { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" }
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" } - { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" }
- { role: kube-ovn, when: "CLUSTER_NETWORK == 'kube-ovn'" } - { role: kube-ovn, when: "CLUSTER_NETWORK == 'kube-ovn'" }
post_tasks: tasks:
- name: 推送所有离线镜像包 - name: 创建文件夹/opt/kube/images
copy: src={{ base_dir }}/down/ dest=/opt/kube/images/ file: dest=/opt/kube/images state=directory
- name: 导入所有离线镜像 - 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 shell: ls /opt/kube/images/*.tar |while read n;do {{ bin_dir }}/docker load -i $n ;done
ignore_errors: true ignore_errors: true
when: "CONTAINER_RUNTIME == 'docker'" 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 shell: ls /opt/kube/images/*.tar |while read n;do {{ bin_dir }}/ctr -n=k8s.io images import $n ;done
ignore_errors: true ignore_errors: true
when: "CONTAINER_RUNTIME == 'containerd'" when: "CONTAINER_RUNTIME == 'containerd'"