From 29e63c21a1af853d7ee78fb562df0d52d99fd616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 5 May 2026 11:20:50 +0200 Subject: [PATCH] tests: k8s-cron-job: set runtimeClassName to kata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cron-job test workload was missing `runtimeClassName: kata`, which meant the cron job was not actually being executed under the Kata runtime, defeating the purpose of the test. Set it explicitly, consistent with the sibling `job.yaml` workload. Signed-off-by: Fabiano FidĂȘncio --- .../integration/kubernetes/runtimeclass_workloads/cron-job.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/kubernetes/runtimeclass_workloads/cron-job.yaml b/tests/integration/kubernetes/runtimeclass_workloads/cron-job.yaml index f2740d253a..6e6c056626 100644 --- a/tests/integration/kubernetes/runtimeclass_workloads/cron-job.yaml +++ b/tests/integration/kubernetes/runtimeclass_workloads/cron-job.yaml @@ -8,6 +8,7 @@ spec: spec: template: spec: + runtimeClassName: kata containers: - name: pi image: quay.io/prometheus/busybox:latest