Skip to content

Commit 3cd54df

Browse files
committed
Bump k8s dependencies to latest avaialble versions.
1 parent 661d04b commit 3cd54df

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

group_vars/all

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ kubeconfig_path: kubeconfig
1515

1616
##### Runtime Configurations #####
1717
# cri-tools version
18-
critools_version: v1.28.0
19-
runc_version: 1.1.10
18+
critools_version: 1.29.0
19+
runc_version: 1.1.12
2020
# valid runtimes: containerd [default], crio.
2121
runtime: containerd
22-
containerd_version: 1.7.9
23-
crio_version: 1.28.1
22+
containerd_version: 1.7.13
23+
crio_version: 1.29.1
2424
pause_container_image: registry.k8s.io/pause:3.9
2525

2626
cgroup_driver: systemd
@@ -60,7 +60,7 @@ bucket: ppc64le-ci-builds
6060
# build_version: d39214ade1d60c
6161

6262
##### Calico Configurations #####
63-
calico_version: v3.26.4
63+
calico_version: v3.27.0
6464
# The available methods of installation for Calico can be either using the tigera operator, or using the manifest.
6565
# Choose between "operator" or "manifest" (default) for the desired installation method.
6666
calico_installation_type: manifest

roles/runtime/tasks/containerd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
state: present
88
disable_gpg_check: true
99

10-
- name: Download and set up containerd.
10+
- name: Download and set up containerd - {{ containerd_version }}
1111
unarchive:
1212
src: "https://github.com/containerd/containerd/releases/download/v{{ containerd_version }}/containerd-{{ containerd_version }}-linux-ppc64le.tar.gz"
1313
dest: "/usr/local"

roles/runtime/tasks/crio.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
state: present
77
disable_gpg_check: true
88

9-
- name: Download CRI-O.
9+
- name: Download CRI-O - {{ crio_version }}
1010
unarchive:
11-
src: "https://github.com/cri-o/cri-o/releases/download/v{{ crio_version }}/cri-o.ppc64le.v{{ crio_version }}.tar.gz"
11+
src: "https://storage.googleapis.com/cri-o/artifacts/cri-o.ppc64le.v{{ crio_version }}.tar.gz"
1212
dest: "/usr/local/bin/"
1313
remote_src: yes
1414
include: cri-o/bin

roles/runtime/tasks/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@
4848
mode: '0644'
4949
- name: Install crictl - {{ critools_version }}
5050
unarchive:
51-
src: "https://github.com/kubernetes-sigs/cri-tools/releases/download/{{ critools_version }}/crictl-{{ critools_version }}-linux-ppc64le.tar.gz"
51+
src: "https://github.com/kubernetes-sigs/cri-tools/releases/download/v{{ critools_version }}/crictl-v{{ critools_version }}-linux-ppc64le.tar.gz"
5252
dest: "/usr/local/bin/"
5353
remote_src: yes
5454

5555
- name: Install iptables
5656
yum:
5757
name: iptables
5858

59-
- name: Install container runtime - runc
59+
- name: Install runc - {{ runc_version }}
6060
get_url:
6161
url: "https://github.com/opencontainers/runc/releases/download/v{{ runc_version }}/runc.ppc64le"
62-
dest: /usr/bin/runc
62+
dest: /usr/local/bin/runc
6363
mode: '0755'
6464

6565
- name: Install and Configure Runtime - Containerd

0 commit comments

Comments
 (0)