Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - test(systest): improve systest resilience #6171

Closed
wants to merge 19 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
echo the important line
  • Loading branch information
acud committed Jul 25, 2024
commit 4e4784a9a6d6986b930386b1298eed2849117e45
4 changes: 3 additions & 1 deletion systest/Makefile
Original file line number Diff line number Diff line change
@@ -43,6 +43,8 @@ ifeq ($(failfast),true)
command := $(command) -test.failfast
endif



.PHONY: docker
docker:
@DOCKER_BUILDKIT=1 docker build \
@@ -89,7 +91,7 @@ gomplate:
.PHONY: run
run: gomplate $(run_deps)
@echo "launching test job with name=$(test_job_name) and testid=$(test_id)"
@ns=$$(kubectl config view --minify -o jsonpath='{..namespace}' 2>/dev/null); \
ns=$$(kubectl config view --minify -o jsonpath='{..namespace}' 2>/dev/null); \
export ns="$${ns:-default}"; \
if [ -z "$${norbac}" ]; then \
testid=$(test_id) job_name=$(test_job_name) image=$(image_name) command="$(command)" rbac=1 \