Skip to content
Snippets Groups Projects
Commit f255ce3f authored by Neven Miculinic's avatar Neven Miculinic Committed by Kubernetes Prow Robot
Browse files

Added CRI-O support for ubuntu (#4629)

* Added CRI-O support for ubuntu

* implemented feedback

* set crictl to fixed version

* Fix errors during rebasing

* Fix linting errors
parent 07ecef86
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,19 @@
state: present
when: ansible_distribution in ["Ubuntu"]
- name: Add CRI-O PPA
apt_repository:
repo: ppa:projectatomic/ppa
state: present
when: ansible_distribution in ["Ubuntu"]
- name: Install crictl
unarchive:
src: "{{ local_release_dir }}/crictl-{{ crictl_version }}-linux-{{ image_arch }}.tar.gz"
dest: "/usr/local/bin"
mode: 0755
remote_src: yes
- name: Make sure needed folders exist in the system
with_items:
- /etc/crio
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment