mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-17 20:51:24 -03:30
crun_bin_dir was used to specify the destination of the crun binary during the download process. This path must match with the value provided in the CRI-O configuration file. So changing its value to bin_dir helps to mismatch errors. Signed-off-by: Victor Morales <chipahuac@hotmail.com>
13 lines
334 B
YAML
13 lines
334 B
YAML
---
|
|
- name: crun | Download crun binary
|
|
include_tasks: "../../../download/tasks/download_file.yml"
|
|
vars:
|
|
download: "{{ download_defaults | combine(downloads.crun) }}"
|
|
|
|
- name: Copy crun binary from download dir
|
|
copy:
|
|
src: "{{ local_release_dir }}/crun"
|
|
dest: "{{ bin_dir }}/crun"
|
|
mode: 0755
|
|
remote_src: true
|