From cf5e64ebfab8fd68a0ec6fd88ce85561381b8b96 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Tue, 2 Nov 2021 10:52:32 +0800 Subject: [PATCH] [skip ci]Fix chaos yaml name in github action (#11065) Signed-off-by: zhuwenxing --- .github/workflows/pod-kill-chaos-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pod-kill-chaos-test.yaml b/.github/workflows/pod-kill-chaos-test.yaml index e68f496ecf..eb8021911a 100644 --- a/.github/workflows/pod-kill-chaos-test.yaml +++ b/.github/workflows/pod-kill-chaos-test.yaml @@ -83,7 +83,7 @@ jobs: run: | # replace chaos object sed -i "s/TESTS_CONFIG_LOCATION =.*/TESTS_CONFIG_LOCATION = \'chaos_objects\/pod_kill\/'/g" constants.py - sed -i "s/ALL_CHAOS_YAMLS =.*/ALL_CHAOS_YAMLS = \'chaos_${{ matrix.pod }}_podkill.yaml\'/g" constants.py + sed -i "s/ALL_CHAOS_YAMLS =.*/ALL_CHAOS_YAMLS = \'chaos_${{ matrix.pod }}_pod_kill.yaml\'/g" constants.py cat constants.py pytest -s -v test_chaos.py --host 127.0.0.1 || echo "chaos test failed"