Skip to content

Commit 736f32a

Browse files
laurazardshanduur
authored andcommitted
chore: disable k8s integration tests for 1GiB worker nodes
Kubernetes E2E tests have had a bump in memory usage, making running these on 1GiB worker nodes unreliable. Disable `talosctl health --run-e2e` in this case. Signed-off-by: Laura Brehm <laurabrehm@hey.com> (cherry picked from commit 74d3590)
1 parent d9de616 commit 736f32a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hack/test/e2e-qemu.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@ case "${TEST_MODE:-default}" in
359359
*)
360360
get_kubeconfig
361361
run_talos_integration_test
362-
run_kubernetes_integration_test
362+
363+
if [[ ${QEMU_MEMORY_WORKERS:-2048} -le 1024 ]]; then
364+
run_kubernetes_integration_test
365+
fi
363366

364367
if [ "${WITH_TEST:-none}" != "none" ]; then
365368
"${WITH_TEST}"

0 commit comments

Comments
 (0)