We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b1d45e commit bc5a331Copy full SHA for bc5a331
tests/performance/load-tests/load-test.sh
@@ -209,6 +209,12 @@ function runTest() {
209
if [ $start_separately = true ]; then
210
namespace=$test_namespace_name$i
211
fi
212
+
213
+ if ! kubectl get dw $dw_name$i -n $namespace &>/dev/null; then
214
+ echo "$dw_name$i devworkspace does not exist. Moving to the next iteration."
215
+ continue
216
+ fi
217
218
if [ "$(kubectl get dw $dw_name$i -n $namespace --template='{{.status.phase}}')" == "Running" ]; then
219
getDwStartingTime $i $namespace &
220
succeeded=$((succeeded + 1))
0 commit comments