File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ runc_version: 1.1.10
20
20
# valid runtimes: containerd [default], crio.
21
21
runtime: containerd
22
22
containerd_version: 1.7.9
23
+ crio_version: 1.28.1
23
24
pause_container_image: registry.k8s.io/pause:3.9
24
25
25
26
cgroup_driver: systemd
Original file line number Diff line number Diff line change 1
1
- hosts : all
2
2
tasks :
3
3
- set_fact :
4
- prepull_images : " {{ prepull_images + ['registry.k8s.io/pause:3.1 '] }}"
4
+ prepull_images : " {{ prepull_images + ['registry.k8s.io/pause:3.9 '] }}"
5
5
6
6
- name : Install Runtime and Kubernetes
7
7
hosts :
Original file line number Diff line number Diff line change 6
6
state : present
7
7
disable_gpg_check : true
8
8
9
- # TODO: Add support to generate a nix-build for ppc64le or add actions to generate a binary for cri-o
10
9
- name : Download CRI-O.
11
10
unarchive :
12
- src : " https://github.com/ppc64le-cloud/crio/raw/main/crio-1.26 .tar.gz"
11
+ src : " https://github.com/cri-o/cri-o/releases/download/v{{ crio_version }}/cri-o.ppc64le.v{{ crio_version }} .tar.gz"
13
12
dest : " /usr/local/bin/"
14
13
remote_src : yes
14
+ include : cri-o/bin
15
15
extra_opts :
16
- - --strip-components=1
16
+ - --strip-components=2
17
17
retries : 3
18
18
delay : 5
19
19
You can’t perform that action at this time.
0 commit comments