mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
21 lines
716 B
YAML
21 lines
716 B
YAML
---
|
|
- name: GVisor | Download runsc binary
|
|
include_tasks: "../../../download/tasks/download_file.yml"
|
|
vars:
|
|
download: "{{ download_defaults | combine(downloads.gvisor_runsc) }}"
|
|
|
|
- name: GVisor | Download containerd-shim-runsc-v1 binary
|
|
include_tasks: "../../../download/tasks/download_file.yml"
|
|
vars:
|
|
download: "{{ download_defaults | combine(downloads.gvisor_containerd_shim) }}"
|
|
|
|
- name: GVisor | Copy binaries
|
|
copy:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ bin_dir }}/{{ item.dest }}"
|
|
mode: 0755
|
|
remote_src: yes
|
|
with_items:
|
|
- { src: "{{ downloads.gvisor_runsc.dest }}", dest: "runsc" }
|
|
- { src: "{{ downloads.gvisor_containerd_shim.dest }}", dest: "containerd-shim-runsc-v1" }
|