From daeb99a83f2b76f0dfc9fd162619fb7dc6820344 Mon Sep 17 00:00:00 2001 From: Matthias Bertschy Date: Mon, 7 Sep 2026 13:42:57 +0200 Subject: [PATCH] experiment(ci): no-op PR to validate the real kubescape/storage v0.0.333 release Prior validations (node-agent#949, #950) used a manually-built test image from the storage fix branch. This is a throwaway PR to confirm component-tests pass against the actual released, merged version (v0.0.333) that helm-charts now points at, via the normal dynamic storage-tag.sh resolution -- no chart/workflow overrides needed. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01LLN3CgGftcnAikV13qD6yJ --- .github/workflows/component-tests.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/component-tests.yaml b/.github/workflows/component-tests.yaml index b46c571537..89e669ae06 100644 --- a/.github/workflows/component-tests.yaml +++ b/.github/workflows/component-tests.yaml @@ -153,6 +153,9 @@ jobs: kubectl wait --for=condition=Ready pod -l app.kubernetes.io/name=prometheus -n monitoring --timeout=300s - name: Install Node Agent Chart run: | + # (no-op, throwaway validation PR: confirms component-tests pass + # against the actual released kubescape/storage v0.0.333, not a + # manually-built test image) 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