aboutsummaryrefslogtreecommitdiffstats
path: root/kud/tests/sriov-network.sh
diff options
context:
space:
mode:
authorTodd Malsbary <todd.malsbary@intel.com>2021-06-17 17:06:58 -0700
committerTodd Malsbary <todd.malsbary@intel.com>2021-06-17 17:11:43 -0700
commit8d3604540bb1eefc36da8d412caf8c072872dc6e (patch)
tree492edeaf5b1a3e1b8f3c41edcc15b46b2a58e96d /kud/tests/sriov-network.sh
parentdc925231a978d1ae4dce969cb4c386d4a1b0bb87 (diff)
Fix jq null error in tests
The specific error is: jq: error (at <stdin>:1232): null (null) cannot be parsed as a number Issue-ID: MULTICLOUD-1361 Signed-off-by: Todd Malsbary <todd.malsbary@intel.com> Change-Id: I1821e5002260cd65ac467756753e2a2ffa01a4ce
Diffstat (limited to 'kud/tests/sriov-network.sh')
-rwxr-xr-xkud/tests/sriov-network.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kud/tests/sriov-network.sh b/kud/tests/sriov-network.sh
index 3191c2f3..db1613be 100755
--- a/kud/tests/sriov-network.sh
+++ b/kud/tests/sriov-network.sh
@@ -10,7 +10,7 @@
set -o pipefail
-sriov_capable_nodes=$(kubectl get nodes -o json | jq -r '.items[] | select((.status.capacity."intel.com/intel_sriov_nic"|tonumber)>=2) | .metadata.name')
+sriov_capable_nodes=$(kubectl get nodes -o json | jq -r '.items[] | select((.status.capacity."intel.com/intel_sriov_nic"!=null) and ((.status.capacity."intel.com/intel_sriov_nic"|tonumber)>=2)) | .metadata.name')
if [ -z "$sriov_capable_nodes" ]; then
echo "SRIOV test case cannot run on the cluster."
exit 0