From bb64c026b8f5d46b97ecebc06b42a505cb4d7413 Mon Sep 17 00:00:00 2001 From: Kalin Krustev Date: Wed, 28 Aug 2024 11:16:50 +0300 Subject: [PATCH] fix: initial DNS timeout issue (#653) --- ml-testing-toolkit-cli/values.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/ml-testing-toolkit-cli/values.yaml b/ml-testing-toolkit-cli/values.yaml index 1f07b387e..670af78df 100644 --- a/ml-testing-toolkit-cli/values.yaml +++ b/ml-testing-toolkit-cli/values.yaml @@ -21,6 +21,7 @@ restartPolicy: Never ## Bash script for TTK CLI script: | + until nslookup github.com; do sleep 5;done; echo "Downloading the test collection..."; wget {{ .Values.config.testCasesZipUrl }} -O downloaded-test-collections.zip; mkdir tmp_test_cases;