c12s-kubespray/roles/container-engine/crictl/tasks/crictl.yml

27 lines
608 B
YAML
Raw Normal View History

---
- name: crictl | Download crictl
include_tasks: "../../../download/tasks/download_file.yml"
vars:
download: "{{ download_defaults | combine(downloads.crictl) }}"
2020-07-28 08:21:08 +00:00
- name: Install crictl config
template:
2020-12-05 17:43:25 +00:00
src: crictl.yaml.j2
dest: /etc/crictl.yaml
owner: root
mode: 0644
- name: Copy crictl binary from download dir
copy:
src: "{{ local_release_dir }}/crictl"
dest: "{{ bin_dir }}/crictl"
mode: 0755
remote_src: true
2020-12-05 17:43:25 +00:00
notify:
- Get crictl completion
- Install crictl completion
2020-12-05 17:43:25 +00:00
- name: Set fact crictl_installed
set_fact:
crictl_installed: true