diff --git a/prow/cpu-hog/prow_run.sh b/prow/cpu-hog/prow_run.sh index 6e9c17f..dede89c 100644 --- a/prow/cpu-hog/prow_run.sh +++ b/prow/cpu-hog/prow_run.sh @@ -19,6 +19,9 @@ oc config view echo "Printing node info" for node in $(oc get nodes | awk 'NR!=1{print $1}'); do oc get node/$node -o yaml; done +# Install dependencies +wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && chmod +x /usr/bin/yq + source node-cpu-hog/env.sh source env.sh source common_run.sh diff --git a/prow/memory-hog/prow_run.sh b/prow/memory-hog/prow_run.sh index b94ddde..d8cd187 100755 --- a/prow/memory-hog/prow_run.sh +++ b/prow/memory-hog/prow_run.sh @@ -19,6 +19,9 @@ oc config view echo "Printing node info" for node in $(oc get nodes | awk 'NR!=1{print $1}'); do oc get node/$node -o yaml; done +# Install dependencies +wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && chmod +x /usr/bin/yq + source node-memory-hog/env.sh source env.sh source common_run.sh