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>
37 lines
816 B
YAML
37 lines
816 B
YAML
---
|
|
- name: Nerdctl | Download nerdctl
|
|
include_tasks: "../../../download/tasks/download_file.yml"
|
|
vars:
|
|
download: "{{ download_defaults | combine(downloads.nerdctl) }}"
|
|
|
|
- name: Nerdctl | Copy nerdctl binary from download dir
|
|
copy:
|
|
src: "{{ local_release_dir }}/nerdctl"
|
|
dest: "{{ bin_dir }}/nerdctl"
|
|
mode: 0755
|
|
remote_src: true
|
|
owner: root
|
|
group: root
|
|
become: true
|
|
notify:
|
|
- Get nerdctl completion
|
|
- Install nerdctl completion
|
|
|
|
- name: Nerdctl | Create configuration dir
|
|
file:
|
|
path: /etc/nerdctl
|
|
state: directory
|
|
mode: 0755
|
|
owner: root
|
|
group: root
|
|
become: true
|
|
|
|
- name: Nerdctl | Install nerdctl configuration
|
|
template:
|
|
src: nerdctl.toml.j2
|
|
dest: /etc/nerdctl/nerdctl.toml
|
|
mode: 0644
|
|
owner: root
|
|
group: root
|
|
become: true
|