zuul-jobs/roles/ensure-kubernetes/tasks/crio-default.yaml
Guillaume Chauvel 911fe88a9f Fix buildset-registry test on focal
Fix ensure-kubernetes role for focal
As focal doesn't exist for project atomic ppa [1]
Install is performed from opensuse repository only

As cri-o package 1.15 for ubuntu focal doesn't exist, update to 1.16

[1] http://ppa.launchpad.net/projectatomic/ppa/ubuntu/dists/
[2] https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/

Change-Id: I7f02b7337a5f51a86be1a2332f2305b0ae722934
2021-05-25 16:38:00 +02:00

43 lines
938 B
YAML

- name: Add project atomic PPA
apt_repository:
repo: ppa:projectatomic/ppa
become: true
- name: Install packages
package:
name:
- cri-o-1.15
- containernetworking-plugins
- podman
- cri-tools
state: present
become: true
- name: Fix conmon symlink
file:
src: /usr/bin/conmon
dest: /usr/libexec/crio/conmon
owner: root
group: root
state: link
become: true
- name: Fix missing registries.conf
# See: https://github.com/containers/podman.io/issues/127
copy:
content: |
[registries.search]
registries = []
[registries.insecure]
registries = []
[registries.block]
registries = []
dest: /etc/containers/registries.conf
mode: 0644
become: true
- name: Set crio cgroup driver
ini_file:
path: /etc/crio/crio.conf
section: crio.runtime
option: cgroup_manager
value: '"cgroupfs"'
mode: 0644
become: true