-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated Containerd version update 1.6.24 (#4835)
Create new Containerd version Co-authored-by: emosbaugh <[email protected]>
- Loading branch information
1 parent
ff18a45
commit 5d83e4d
Showing
9 changed files
with
430 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
yum libzstd | ||
asset runc https://github.com/opencontainers/runc/releases/download/v1.1.9/runc.amd64 | ||
dockerout rhel-7 addons/containerd/template/Dockerfile.centos7 1.6.24 | ||
dockerout rhel-7-force addons/containerd/template/Dockerfile.centos7-force 1.6.24 | ||
dockerout rhel-8 addons/containerd/template/Dockerfile.centos8 1.6.24 | ||
dockerout rhel-9 addons/containerd/template/Dockerfile.rhel9 1.6.24 | ||
dockerout ubuntu-18.04 addons/containerd/template/Dockerfile.ubuntu18 1.6.21 | ||
dockerout ubuntu-20.04 addons/containerd/template/Dockerfile.ubuntu20 1.6.24 | ||
dockerout ubuntu-22.04 addons/containerd/template/Dockerfile.ubuntu22 1.6.24 | ||
image pause registry.k8s.io/pause:3.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
runtime-endpoint: unix:///var/run/containerd/containerd.sock | ||
image-endpoint: unix:///var/run/containerd/containerd.sock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
apiVersion: troubleshoot.sh/v1beta2 | ||
kind: HostPreflight | ||
metadata: | ||
name: kurl-builtin | ||
spec: | ||
collectors: | ||
- hostOS: {} | ||
analyzers: | ||
- hostOS: | ||
outcomes: | ||
- pass: | ||
when: "centos = 7" | ||
message: "containerd addon supports centos 7" | ||
- pass: | ||
when: "rhel = 7" | ||
message: "containerd addon supports rhel 7" | ||
- pass: | ||
when: "ol = 7" | ||
message: "containerd addon supports ol 7" | ||
- pass: | ||
when: "centos = 8" | ||
message: "containerd addon supports centos 8" | ||
- pass: | ||
when: "rhel = 8" | ||
message: "containerd addon supports rhel 8" | ||
- pass: | ||
when: "ol = 8" | ||
message: "containerd addon supports ol 8" | ||
- pass: | ||
when: "centos = 9" | ||
message: "containerd addon supports centos 9" | ||
- pass: | ||
when: "rhel = 9" | ||
message: "containerd addon supports rhel 9" | ||
- pass: | ||
when: "rocky = 9" | ||
message: "containerd addon supports rocky 9" | ||
- fail: | ||
when: "ol = 9" | ||
message: "containerd addon does not support ol 9" | ||
- fail: | ||
when: "ubuntu = 16.04" | ||
message: "containerd addon does not support ubuntu 16.04" | ||
- warn: | ||
when: "ubuntu = 18.04" | ||
message: "containerd addon supports ubuntu 18.04, but only up to containerd 1.6.21, which will be installed instead of 1.6.24" | ||
- pass: | ||
when: "ubuntu = 20.04" | ||
message: "containerd addon supports ubuntu 20.04" | ||
- pass: | ||
when: "ubuntu = 22.04" | ||
message: "containerd addon supports ubuntu 22.04" |
Oops, something went wrong.