From f1c5c8d4e59ae92a82ebf6fe0f9e660552c3bbe6 Mon Sep 17 00:00:00 2001 From: Matthias Bertschy Date: Tue, 8 Sep 2026 14:19:20 +0200 Subject: [PATCH] throwaway: pin storage image to same-day main baseline for CI comparison Overrides storage.image.repository/tag in component-tests.yaml to pull quay.io/matthiasb_1/storage:baseline-4535872c, a build of kubescape/storage main (commit 4535872c, PR #397 merged, pre-Lane-0) at the same point in time as the Lane 0 validation, so the failure-count comparison is apples-to-apples against today's node-agent test suite rather than an older PR's numbers. Throwaway PR, not for merge. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01LCMGT6Po2tSr1VEDVrbbYd --- .github/workflows/component-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/component-tests.yaml b/.github/workflows/component-tests.yaml index b46c571537..6008df371b 100644 --- a/.github/workflows/component-tests.yaml +++ b/.github/workflows/component-tests.yaml @@ -155,7 +155,7 @@ jobs: run: | STORAGE_TAG=$(./tests/scripts/storage-tag.sh) echo "Storage tag that will be used: ${STORAGE_TAG}" - helm upgrade --install kubescape ./tests/chart --set clusterName=`kubectl config current-context` --set nodeAgent.image.tag=${{ needs.build-and-push-image.outputs.image_tag }} --set nodeAgent.image.repository=${{ needs.build-and-push-image.outputs.image_repo }} --set storage.image.tag=${STORAGE_TAG} -n kubescape --create-namespace --wait --timeout 10m --debug + helm upgrade --install kubescape ./tests/chart --set clusterName=`kubectl config current-context` --set nodeAgent.image.tag=${{ needs.build-and-push-image.outputs.image_tag }} --set nodeAgent.image.repository=${{ needs.build-and-push-image.outputs.image_repo }} --set storage.image.tag=${STORAGE_TAG} --set storage.image.repository=quay.io/matthiasb_1/storage --set storage.image.tag=baseline-4535872c -n kubescape --create-namespace --wait --timeout 10m --debug # Check that the node-agent pod is running kubectl wait --for=condition=Ready pod -l app.kubernetes.io/name=node-agent -n kubescape --timeout=600s sleep 5