Skip to content

Commit

Permalink
fix: 分发containerd二进制
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmzj committed Apr 16, 2023
1 parent e2bd948 commit 7724015
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/containerd/tasks/main.yml
Expand Up @@ -15,7 +15,7 @@
- name: 下载 containerd 二进制文件
copy: src={{ item }} dest={{ bin_dir }}/containerd-bin/ mode=0755
with_fileglob:
- {{ base_dir }}/bin/containerd-bin/*
- "{{ base_dir }}/bin/containerd-bin/*"
tags: upgrade

- name: 下载 crictl
Expand Down
2 changes: 1 addition & 1 deletion roles/kube-node/tasks/main.yml
Expand Up @@ -17,7 +17,7 @@
- name: 下载 cni plugins 二进制文件
copy: src={{ item }} dest=/opt/cni/bin/ mode=0755
with_fileglob:
- {{ base_dir }}/bin/cni-bin/*
- "{{ base_dir }}/bin/cni-bin/*"

- name: 添加 kubectl 自动补全
lineinfile:
Expand Down

0 comments on commit 7724015

Please sign in to comment.