chore: fix the gvisor test

The gvisor test was not using the correct runtimeclass and would have
always passed the regardless.

Signed-off-by: Noel Georgi <git@frezbo.dev>
This commit is contained in:
Noel Georgi 2023-12-13 18:52:15 +05:30
parent 3a787c1d67
commit 0b94550c42
No known key found for this signature in database
GPG Key ID: 21A9F444075C9E36
4 changed files with 4 additions and 3 deletions

View File

@ -16,7 +16,7 @@ CLOUD_IMAGES_EXTRA_ARGS ?= ""
ARTIFACTS := _out
TOOLS ?= ghcr.io/siderolabs/tools:v1.7.0-alpha.0
PKGS ?= v1.7.0-alpha.0-2-ga36dec4
PKGS ?= v1.7.0-alpha.0-7-g4c59641
PKG_KERNEL ?= ghcr.io/siderolabs/kernel:$(PKGS)
EXTRAS ?= v1.7.0-alpha.0
# renovate: datasource=github-tags depName=golang/go

View File

@ -379,6 +379,7 @@ func (suite *ExtensionsSuiteQEMU) TestExtensionsGvisor() {
Name: "nginx-gvisor",
},
Spec: corev1.PodSpec{
RuntimeClassName: pointer.To("gvisor"),
Containers: []corev1.Container{
{
Name: "nginx-gvisor",

View File

@ -479,7 +479,7 @@ const (
TrustdUserID = 51
// DefaultContainerdVersion is the default container runtime version.
DefaultContainerdVersion = "1.7.10"
DefaultContainerdVersion = "1.7.11"
// SystemContainerdNamespace is the Containerd namespace for Talos services.
SystemContainerdNamespace = "system"

View File

@ -1 +1 @@
v1.7.0-alpha.0-2-ga36dec4
v1.7.0-alpha.0-7-g4c59641