mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-04-15 06:57:28 +00:00
Signed-off-by: Tullio Sebastiani <tsebasti@redhat.com> typo Signed-off-by: Tullio Sebastiani <tsebasti@redhat.com> app_outage fix Signed-off-by: Tullio Sebastiani <tsebasti@redhat.com> typo Signed-off-by: Tullio Sebastiani <tsebasti@redhat.com> typo Signed-off-by: Tullio Sebastiani <tsebasti@redhat.com>
19 lines
609 B
Bash
19 lines
609 B
Bash
set -xeEo pipefail
|
|
|
|
source CI/tests/common.sh
|
|
|
|
trap error ERR
|
|
trap finish EXIT
|
|
|
|
|
|
function functional_test_arca_memory_hog {
|
|
yq -i '.input_list[0].node_selector={"kubernetes.io/hostname":"kind-worker2"}' scenarios/arcaflow/memory-hog/input.yaml
|
|
export scenario_type="arcaflow_scenarios"
|
|
export scenario_file="scenarios/arcaflow/memory-hog/input.yaml"
|
|
export post_config=""
|
|
envsubst < CI/config/common_test_config.yaml > CI/config/arca_memory_hog.yaml
|
|
python3 -m coverage run -a run_kraken.py -c CI/config/arca_memory_hog.yaml
|
|
echo "Arcaflow Memory Hog: Success"
|
|
}
|
|
|
|
functional_test_arca_memory_hog |