mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-05-18 11:12:23 +03:00
8f5f75211f
Signed-off-by: Bas Meijer <bas.meijer@enexis.nl>
13 lines
333 B
YAML
13 lines
333 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: "{{ downloads.crun.dest }}"
|
|
dest: "{{ bin_dir }}/crun"
|
|
mode: "0755"
|
|
remote_src: true
|